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

github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <unknown>2009-01-06 01:35:57 +0300
committerstarkos <unknown>2009-01-06 01:35:57 +0300
commitbbb16262923a81deb3f2f5acd03ff17d2672d53f (patch)
tree15300f39e24f309ca9a08c22f9f6a9ef8ed097a5 /samples
parente0186be6ae1649ad4d10b76b03a4846af4caeb8c (diff)
Enable Windows linking to shared libraries even with NoImportLib flag set (just in case)
Diffstat (limited to 'samples')
-rw-r--r--samples/project/CppSharedLib/premake4.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/samples/project/CppSharedLib/premake4.lua b/samples/project/CppSharedLib/premake4.lua
index 4177c3e..f774605 100644
--- a/samples/project/CppSharedLib/premake4.lua
+++ b/samples/project/CppSharedLib/premake4.lua
@@ -3,7 +3,8 @@ project "CppSharedLib"
kind "SharedLib"
language "C++"
files { "*.cpp", "CppSharedLib.def" }
-
+ flags { "NoImportLib" }
+
configuration "Debug"
targetdir "lib/debug"