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

premake4.lua « CppConsoleApp « project « samples - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1d684a32e6ab6c0fbc702737400b30d820f8380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project "CppConsoleApp"

	kind     "ConsoleApp"
	language "C++"
	
	flags    { "FatalWarnings", "ExtraWarnings" }
	
	files    { "*.h", "*.cpp" }
	
	includedirs { "I:/Code" }

	libdirs { "../lib" }
	links   { "CppSharedLib" }
	
	configuration "Debug"
		targetdir "../bin/debug (x64)"
		links { "CppStaticLib" }
		
	configuration "Release"
		targetdir "../bin/release (x64)"