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: 62dae97d11d14c852a27f619b353f5e506a9fdfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project "CppConsoleApp"

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

	libdirs { "../lib" }
	links   { "CppSharedLib" }
	
	pchheader "CppConsoleApp.h"