Continued expanding slightly upon the visualization system.
[aesalon.git] / build.config
blob0e052ab776561d07676211d909f6654c86e4701c
1 # General configuration
3 # The default path to libc
4 set(LIBC_PATH "/lib/libc.so.6")
5 # The default TCP port to use
6 set(DEFAULT_PORT 6321)
8 # The default user-specific config file path
9 set(USER_CONFIG_PATH "~/.config/aesalon/aesalon.conf")
10 # The default system-wide config file path
11 set(SYS_CONFIG_PATH "/etc/aesalon.conf")
13 # Build configuration
15 # If DEVELOPMENT_BUILD is true, then aesalon will output a lot of debugging
16 # information
17 set(DEVELOPMENT_BUILD true)
18 # If PROFILE_BUILD is true, then aesalon will be compiled with -pg, to
19 # produce profiling information
20 set(PROFILE_BUILD false)
22 # Build the monitor?
23 set(BUILD_MONITOR true)
24 # Build the GUI?
25 set(BUILD_GUI true)
27 # Only applicable if the monitor is being built
28 # AESALON_PLATFORM can be:
29 #   0: linux x86
30 #   1: linux x86-64 (sometimes known as amd64)
31 set(AESALON_PLATFORM        1)