-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tests.lua
56 lines (46 loc) · 855 Bytes
/
Tests.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
project "Tests"
location "Tests"
kind "ConsoleApp"
language "c++"
staticruntime "on"
floatingpoint "Fast"
exceptionhandling "Off"
vectorextensions "SSE2"
targetdir("$(SolutionDir)Builds/bin/" .. outputdir)
objdir("$(SolutionDir)Builds/bin-int/" .. outputdir)
files
{
"Tests/**.h",
"Tests/**.cpp",
"Tests/**.hpp"
}
includedirs
{
"$(SolutionDir)%{prj.name}",
"$(SolutionDir)Static/",
}
buildoptions
{
"/GT",
"/Oi",
"/GR-",
"/Ot",
"/Ob2"
}
links
{
"Static"
}
filter "system:windows"
cppdialect "C++20"
systemversion "latest"
filter "configurations:Development"
runtime "Debug"
symbols "On"
filter "configurations:Debug"
runtime "Debug"
symbols "On"
optimize "On"
filter "configurations:Shipping"
runtime "Release"
optimize "On"