Began implementing a nice bitree (one-dimensional quadtree) in the GUI.
[aesalon.git] / build.config
blob5a4882619ba05fabbdbfb88dc84d0e5444ce46da
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 # Build configuration
10 # If DEVELOPMENT_BUILD is true, then aesalon will output a lot of debugging
11 # information
12 set(DEVELOPMENT_BUILD true)
13 # If PROFILE_BUILD is true, then aesalon will be compiled with -pg, to
14 # produce profiling information
15 set(PROFILE_BUILD true)
17 # Build the monitor?
18 set(BUILD_MONITOR true)
19 # Build the GUI?
20 set(BUILD_GUI true)
22 # Only applicable if the monitor is being built
23 # AESALON_PLATFORM can be:
24 #   0: linux x86
25 #   1: linux x86-64 (sometimes known as amd64)
26 set(AESALON_PLATFORM        1)