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

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

	kind     "WindowedApp"
	language "C++"
	
	files    "*.cpp"
	
	libdirs { "../lib" }
	links   { "CppStaticLib" }
	
	configuration "windows"
		links { "user32", "gdi32" }