Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2017-11-16 00:58:08 +0300
committerOliver Schneider <oliver@assarbad.net>2017-11-16 00:58:08 +0300
commitf9e4de4e0cca8f13b403ee09079b818e51d66c00 (patch)
tree1af8b9ef70c9bdc5903c434f503b4b56b29e8ecc /3rdparty
parent8398db03060361f352ca924eaa387bec083fd4f4 (diff)
Removing HTML help feature (for now just defanged)
Adding "/nodefaultlib:libcmt" to debug configurations of WDS because of the luajit2 static lib Fixed the /debug:fastlink issue with VS2017
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/lua/premake4.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/lua/premake4.lua b/3rdparty/lua/premake4.lua
index 3d720a8..82e4390 100644
--- a/3rdparty/lua/premake4.lua
+++ b/3rdparty/lua/premake4.lua
@@ -197,7 +197,7 @@ function create_luajit_projects(basedir)
libdirs {"$(IntDir)"}
defines {"NDEBUG", "_CRT_SECURE_NO_DEPRECATE"}
links {pfx.."luajit2"}
- linkoptions {"/pdbaltpath:%_PDB%"}
+ linkoptions {"/pdbaltpath:%_PDB%", "/nodefaultlib"}
vpaths {["Header Files/*"] = { bd.."src/*.h" }, ["Source Files/*"] = { bd.."src/*.c" },}
files {bd.."src/luajit.c",}
configuration {"Release", "x32"}