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

premake4.lua « project « samples - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5482b75b1def7e62607d73496a9d28e537c6ef8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
solution "PremakeTestbox"
	configurations { "Debug", "Release" }
	
	configuration "Debug"
		targetdir "bin/debug"
		flags   { "Symbols" }
		defines { "_DEBUG", "DEBUG" }
		
	configuration "Release"
		targetdir "bin/release"
		flags   { "Optimize" }
		defines { "NDEBUG" }
	
	
include "CppConsoleApp"
include "CsConsoleApp"
include "CppWindowedApp"
include "CppSharedLib"
include "CsSharedLib"
include "CppStaticLib"


if _ACTION == "clean" then
	os.rmdir("bin")
end