diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-01-29 20:50:30 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-01-29 20:50:30 +0200 |
commit | 2acb8bdf937dda337a591caa227d604efec5ca4a (patch) | |
tree | 794341096d012e98a7357d09c08801b1c06f1d7f /indra | |
parent | 6e6fb924ecdb4257884e9012f9cbbf9193cf8c94 (diff) |
DRTVWR-589: get rid of pragma and update windows libs
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterluadebug.cpp | 5 | ||||
-rw-r--r-- | indra/newview/llluamanager.cpp | 8 |
2 files changed, 0 insertions, 13 deletions
diff --git a/indra/newview/llfloaterluadebug.cpp b/indra/newview/llfloaterluadebug.cpp index 64f169777d..58639490db 100644 --- a/indra/newview/llfloaterluadebug.cpp +++ b/indra/newview/llfloaterluadebug.cpp @@ -63,11 +63,6 @@ BOOL LLFloaterLUADebug::postBuild() getChild<LLButton>("browse_btn")->setClickedCallback(boost::bind(&LLFloaterLUADebug::onBtnBrowse, this)); getChild<LLButton>("run_btn")->setClickedCallback(boost::bind(&LLFloaterLUADebug::onBtnRun, this)); -#if !LL_WINDOWS - getChild<LLButton>("execute_btn")->setEnabled(false); - getChild<LLButton>("browse_btn")->setEnabled(false); -#endif - return TRUE; } diff --git a/indra/newview/llluamanager.cpp b/indra/newview/llluamanager.cpp index 49bc83c66b..09ca6e10a7 100644 --- a/indra/newview/llluamanager.cpp +++ b/indra/newview/llluamanager.cpp @@ -69,14 +69,6 @@ extern LLUIListener sUIListener; #include "luau/luaconf.h" #include "luau/lualib.h" -#if LL_WINDOWS -#pragma comment(lib, "Luau.Compiler.lib") -#pragma comment(lib, "Luau.Ast.lib") -#pragma comment(lib, "Luau.CodeGen.lib") -#pragma comment(lib, "Luau.Config.lib") -#pragma comment(lib, "Luau.VM.lib") -#endif - #define lua_register(L, n, f) (lua_pushcfunction(L, (f), n), lua_setglobal(L, (n))) #define lua_rawlen lua_objlen |