-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmake.toml
38 lines (30 loc) · 965 Bytes
/
cmake.toml
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
[project]
name = "DebugLoopRace"
version = "0.1.0"
[target.DebugLoop]
type = "executable"
sources = ["src/DebugLoop/*.cpp"]
include-directories = ["include"]
link-options = ["/INCREMENTAL:NO"]
[target.DebugLoop.properties]
VS_DEBUGGER_COMMAND_ARGUMENTS = "\"$<TARGET_FILE:DebugMe>\""
[template.test]
type = "executable"
link-options = ["/DYNAMICBASE:NO", "/INCREMENTAL:NO"]
[target.DebugMe]
type = "test"
sources = ["src/DebugMe/*.cpp"]
[target.MemoryTest]
type = "test"
sources = ["src/MemoryTest/*.cpp"]
[target.AntiDebugHandle]
type = "test"
sources = ["src/AntiDebugHandle/*.cpp"]
[target.TestTitanEngine]
type = "executable"
sources = ["src/TestTitanEngine/*.cpp", "src/TestTitanEngine/*.h"]
link-directories = ["src/TestTitanEngine"]
x64.link-libraries = ["TitanEngine_x64"]
x32.link-libraries = ["TitanEngine_x86"]
[target.TestTitanEngine.properties]
VS_DEBUGGER_COMMAND_ARGUMENTS = "\"$<TARGET_FILE:DebugMe>\""