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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2009-01-06 01:35:57 +0300
committerstarkos <none@none>2009-01-06 01:35:57 +0300
commitdc9903a94f9568efef158571379fa51dbb76e0e1 (patch)
tree15300f39e24f309ca9a08c22f9f6a9ef8ed097a5 /samples
parent43660bcca529e492688a3e147a4245c12bba593e (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"