-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.config.txt
70 lines (60 loc) · 2.21 KB
/
build.config.txt
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
# Build Configuration Template (MousePaw Media Build System)
# Version: 3.2.1
##### PATH CONFIGURATIONS ######
#
# Make a copy of this file and save it in the root of the repository
# with a name ending in ".config". Then modify as necessary.
#
# The repository is configured to ignore all .config files, with the
# exception of default.config (which should never be modified).
#
# ${CMAKE_HOME_DIRECTORY} is a special variable which points to
# the directory containing the CMakeLists.txt file being built from.
# Relative paths should always begin with this variable.
#
# To use a configuration file with make, specify it in the 'make' command via
# "make <target> CONFIG=<name>", where '<name>' is the first part of the
# file name (before the .config). For example, "make library CONFIG=foo"
# would build the library (release target) using "foo.config".
#
# To use a configuration file with CMake directly, specify it by passing the
# argument "-DCONFIG_FILENAME=<name>", where '<name>' is the first part of the
# file name (before the .config). For example, passing the argument
# "-DCONFIG_FILENAME=foo" would build using "foo.config".
#
##### WHERE TO FIND DEPENDENCIES #####
#
# Specify the path to the dependencies. The default is to look for
# dependencies in the specified repositories adjacent to this repository.
# You may need run the appropriate make commands on said repositories first.
set(EVENTPP_DIR
${CMAKE_HOME_DIRECTORY}/../../libdeps/libs
)
set(ARCTICTERN_DIR
${CMAKE_HOME_DIRECTORY}/../../arctic-tern/arctic-tern
)
set(GOLDILOCKS_DIR
${CMAKE_HOME_DIRECTORY}/../../goldilocks/goldilocks
)
set(IOSQUEAK_DIR
${CMAKE_HOME_DIRECTORY}/../../iosqueak/iosqueak
)
set(NIMBLY_DIR
${CMAKE_HOME_DIRECTORY}/../../nimbly/nimbly
)
set(ONESTRING_DIR
${CMAKE_HOME_DIRECTORY}/../../onestring/onestring
)
set(SIMPLEXPRESS_DIR
${CMAKE_HOME_DIRECTORY}/../../simplexpress/simplexpress
)
##### LLVM LIBC++ #####
#
# This option asks the Clang compiler to use LLVM's libc++ library.
# The build system will look for this library in the system paths.
#
# If you are not compiling with Clang, this option will be ignored.
# NOTE: libc++ is already used by default on Mac.
#
# Set the option to either `true` or `false` below.
set(LLVM false)