Properly implemented socket-waiting.
[aesalon.git] / build.config
blob87eb6b0f2255f117d12ea35e24c8858a780564a6
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)
14 # Build the monitor?
15 set(BUILD_MONITOR true)
16 # Build the GUI?
17 set(BUILD_GUI true)
19 # Only applicable if the monitor is being built
20 # AESALON_PLATFORM can be:
21 #   0: linux x86
22 #   1: linux x86-64 (sometimes known as amd64)
23 set(AESALON_PLATFORM        1)