19 lines
313 B
Lua
19 lines
313 B
Lua
|
workspace "BarinkEngine"
|
||
|
configurations { "Debug", "Release" }
|
||
|
|
||
|
project "Engine"
|
||
|
kind "ConsoleApp"
|
||
|
language "C"
|
||
|
targetdir "build/%{cfg.buildcfg}"
|
||
|
|
||
|
files { "src/*.c"}
|
||
|
|
||
|
filter "configurations:Debug"
|
||
|
defines {"DEBUG"}
|
||
|
symbols "On"
|
||
|
|
||
|
filter "configurations:Release"
|
||
|
defines {"NDEBUG"}
|
||
|
optimize "On"
|
||
|
|