-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSLiM.pro
More file actions
21 lines (17 loc) · 829 Bytes
/
SLiM.pro
File metadata and controls
21 lines (17 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TEMPLATE = subdirs
SUBDIRS += \
eidos \
core \
QtSLiM \
gsl \
treerec/tskit \
eidos_zlib
eidos.depends = gsl eidos_zlib
core.depends = gsl eidos_zlib eidos treerec/tskit
QtSLiM.depends = gsl eidos_zlib eidos core treerec/tskit
# Uncomment the lines below to enable ASAN (Address Sanitizer), for debugging of memory issues, in every
# .pro file project-wide. See https://clang.llvm.org/docs/AddressSanitizer.html for discussion of ASAN
# Also set the ASAN_OPTIONS env. variable, in the Run Settings section of the Project tab in Qt Creator, to
# strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
# This also enables undefined behavior sanitizing, in conjunction with ASAN, because why not.
#CONFIG += sanitizer sanitize_address sanitize_undefined