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-26 20:49:57 +0300
committerstarkos <none@none>2009-01-26 20:49:57 +0300
commit707d849840432c7dbe4a5d99aebbc93b9fbce7b9 (patch)
treee33ac26ea0775efaaa0cb95fa08986bcf7b4df59 /samples
parent04dc3f7df74c41e8653bd8fb8427ff2faa0127c0 (diff)
Bug 2533504: Files above project root not added to project
Diffstat (limited to 'samples')
-rw-r--r--samples/project/CppConsoleApp/premake4.lua2
-rw-r--r--samples/project/CppSharedLib/premake4.lua1
-rw-r--r--samples/project/premake4.lua2
3 files changed, 1 insertions, 4 deletions
diff --git a/samples/project/CppConsoleApp/premake4.lua b/samples/project/CppConsoleApp/premake4.lua
index 665789b..50c22d8 100644
--- a/samples/project/CppConsoleApp/premake4.lua
+++ b/samples/project/CppConsoleApp/premake4.lua
@@ -3,7 +3,7 @@ project "CppConsoleApp"
kind "ConsoleApp"
language "C++"
- files "*.cpp"
+ files { "*.cpp", "../fakefile.cpp" }
includedirs { "I:/Code" }
diff --git a/samples/project/CppSharedLib/premake4.lua b/samples/project/CppSharedLib/premake4.lua
index f774605..9f66cea 100644
--- a/samples/project/CppSharedLib/premake4.lua
+++ b/samples/project/CppSharedLib/premake4.lua
@@ -3,7 +3,6 @@ project "CppSharedLib"
kind "SharedLib"
language "C++"
files { "*.cpp", "CppSharedLib.def" }
- flags { "NoImportLib" }
configuration "Debug"
targetdir "lib/debug"
diff --git a/samples/project/premake4.lua b/samples/project/premake4.lua
index f97d16f..24a1cd0 100644
--- a/samples/project/premake4.lua
+++ b/samples/project/premake4.lua
@@ -42,5 +42,3 @@ solution "PremakeTestbox"
end
}
-print(os.findlib("hal"))
-