-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.nims
More file actions
40 lines (33 loc) · 828 Bytes
/
Copy pathconfig.nims
File metadata and controls
40 lines (33 loc) · 828 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
35
36
37
38
39
40
# begin Nimble config (version 2)
# --noNimblePath
--out:"./bin/"
--legacy:laxEffects
--mm:arc
--d:useMalloc
--deepcopy:on
--passC:"-Wno-implicit-function-declaration"
--passC:"-Wno-int-conversion"
--d:includeWizardUtils
--path:"./src"
when getEnv("NMOO_DEBUG") == "1":
--d:debug
--d:useGcAssert
--passC:"-fsanitize=address,undefined"
--passL:"-fsanitize=address,undefined"
--debugger:native
when getEnv("NMOO_DUMP_TASKS") == "1":
--d:dumpTaskCode
when getEnv("NMOO_SINGLE_STEP") == "1":
--d:debug
--d:singleStepTasks
when getEnv("NMOO_RELEASE") == "1":
--d:release
--d:danger
when getEnv("NMOO_PROFILE") == "1":
--stackTrace:on
--profiler:on
# begin Nimble config (version 2)
--noNimblePath
when withDir(thisDir(), system.fileExists("nimble.paths")):
include "nimble.paths"
# end Nimble config