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

premake4.lua - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da62d67ad48b39447ea5ff3b0a3c78722fdeee10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---------------------------------------------------------------------------
-- Premake4 solution script for Premake4
-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
---------------------------------------------------------------------------

solution "Premake4"
	
	configurations { "Debug", "Release" }


project "Premake4"

	language "c"	
	defines { "_CRT_SECURE_NO_WARNINGS" }
	files { "**.h", "**.c" }

	configuration "Debug"
		defines { "_DEBUG" }
		
	configuration "Release"
		defines { "NDEBUG" }