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: ced255435fc51c0aa7551122ff9d8a3052d11cb4 (plain)
1
2
3
4
5
6
7
8
9
project "CppConsoleApp"

	kind     "ConsoleApp"
	language "C++"
	
	files    "*.cpp"
	
	libdirs { "../lib" }
	links   { "CppSharedLib" }