aboutsummaryrefslogtreecommitdiffstats
path: root/premake5.lua
blob: 3818236b836d1c1b33f84549cea221eedc8782d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
workspace("lush")
configurations({ "Debug", "Release" })

-- lush project
project("lush")
kind("ConsoleApp")
language("C")
targetdir("bin/%{cfg.buildcfg}/lush")

files({
	"src/**.h",
	"src/**.c",
})
defines({ 'LUSH_VERSION="0.0.1"' })

filter("configurations:Debug")
defines({ "DEBUG" })
symbols("On")

filter("configurations:Release")
defines({ "NDEBUG" })
optimize("On")