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: b39956b68409414f1c0332b3af7a6ff49e4d0528 (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
27
28
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"

function onclean()
	os.rmdir("bin")
	os.rmdir("CppSharedLib/lib")
	os.rmdir("CppStaticLib/lib")
	os.rmdir("CsSharedLib/lib")
end