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

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

	kind     "SharedLib"
	language "C#"
	files    { "*.cs" }

	configuration "Debug"
		targetdir "lib/debug"
		
	configuration "Release"
		targetdir "lib/release"


	if _ACTION == "clean" then
		os.rmdir("lib")
	end