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

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

	kind     "SharedLib"
	language "C++"
	files    { "*.cpp", "CppSharedLib.def" }

	configuration "Debug"
		targetdir "lib/debug"
		
	configuration "Release"
		targetdir "lib/release"
		flags { "NoImportLib" }