-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
34 lines (25 loc) · 818 Bytes
/
premake5.lua
File metadata and controls
34 lines (25 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
workspace "tmgl"
configurations { "Debug", "Release" }
platforms { "x32", "x64" }
filter { "platforms:x32" }
system "Windows"
architecture "x86"
filter { "platforms:x64" }
system "Windows"
architecture "x64"
flags { "MultiProcessorCompile"}
filter "configurations:Debug"
defines { "DEBUG", "BX_CONFIG_DEBUG=1" }
symbols "On"
debugdir "./"
runtime "Debug"
optimize "Off"
--links {"SDL2d", "SDL2maind"}
filter "configurations:Release"
defines { "NDEBUG", "BX_CONFIG_DEBUG=0" }
optimize "On"
runtime "Release"
--links {"SDL2", "SDL2main"}
include("lib.lua")
--include("vendor/bullet3/build3/premake4.lua")
--include("scriptcore.lua")