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-08-12 18:56:54 +0400
committerstarkos <none@none>2009-08-12 18:56:54 +0400
commitb1ee77fef3a6b720ee5f27deb321f44fcd04a0bc (patch)
treeea5f412149ca6a19be43df5b17201117178b340a /samples
parent2ad5055a63688d99585be7bce4f7d2f10e89335a (diff)
Refactored clean action to use new callbacks
Diffstat (limited to 'samples')
-rw-r--r--samples/project/CppConsoleApp/premake4.lua3
-rw-r--r--samples/project/premake4.lua8
2 files changed, 0 insertions, 11 deletions
diff --git a/samples/project/CppConsoleApp/premake4.lua b/samples/project/CppConsoleApp/premake4.lua
index 7781ed9..e1d684a 100644
--- a/samples/project/CppConsoleApp/premake4.lua
+++ b/samples/project/CppConsoleApp/premake4.lua
@@ -12,9 +12,6 @@ project "CppConsoleApp"
libdirs { "../lib" }
links { "CppSharedLib" }
- pchheader "stdafx.h"
- pchsource "stdafx.cpp"
-
configuration "Debug"
targetdir "../bin/debug (x64)"
links { "CppStaticLib" }
diff --git a/samples/project/premake4.lua b/samples/project/premake4.lua
index e543803..7ce87bd 100644
--- a/samples/project/premake4.lua
+++ b/samples/project/premake4.lua
@@ -28,14 +28,6 @@ solution "PremakeTestbox"
--- add to the built-in clean action
-
- if _ACTION == "clean" then
- os.rmdir("bin")
- end
-
-
-
-- add a new install action
newaction {