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

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

	kind     "ConsoleApp"
	language "C#"
	
	files   { "**.cs", "**.bmp", "**.resx", "**.config" }
	
	libdirs { "../lib" }
	links { "CsSharedLib", "CppSharedLib", "System" }

	buildoptions { "/define:TEST" }
		
	configuration "*.bmp"
		buildaction "Embed"