-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake5.lua
91 lines (75 loc) · 1.89 KB
/
premake5.lua
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!lua
workspace "TauUtils"
configurations {
"Debug",
"Release",
}
platforms { "Win64" }
cdialect "C11"
cppdialect "C++17"
floatingpoint "Fast"
floatingpointexceptions "off"
rtti "off"
clr "off"
functionlevellinking "on"
intrinsics "on"
largeaddressaware "on"
vectorextensions "AVX2"
stringpooling "on"
staticruntime "on"
flags { "LinkTimeOptimization" }
filter { "platforms:Win64" }
system "Windows"
architecture "x86_64"
_arch = "x64"
defines {
"_CRT_SECURE_NO_WARNINGS",
"_HAS_EXCEPTIONS=0"
}
characterset "MBCS"
filter "configurations:Debug"
optimize "Debug"
inlining "Explicit"
runtime "Debug"
filter "configurations:Release"
optimize "Speed"
inlining "Auto"
runtime "Release"
filter {}
targetdir "%{wks.location}/bin/%{cfg.shortname}-%{_arch}"
project "TauUtils"
kind "StaticLib"
language "C++"
toolset "clang"
location "TauUtils"
files {
"%{prj.location}/**.h",
"%{prj.location}/**.hpp",
"%{prj.location}/**.inl",
"%{prj.location}/src/**.c",
"%{prj.location}/src/**.cpp"
}
includedirs {
"%{prj.location}/include"
}
project "Testing"
kind "ConsoleApp"
language "C++"
toolset "clang"
location "Testing"
files {
"%{prj.location}/**.h",
"%{prj.location}/**.hpp",
"%{prj.location}/src/**.c",
"%{prj.location}/src/**.cpp"
}
includedirs {
"%{prj.location}/include",
"%{wks.location}/TauUtils/include"
}
libdirs {
"%{cfg.outdir}"
}
links {
"TauUtils.lib"
}