Continued working on the LaTeX documentation.
[aesalon.git] / CMakeLists.txt
bloba06e6606919ad4bdddb9ca8969e69827af4435ee
1 # Use some CMake 2.6-specific features . . .
2 cmake_minimum_required(VERSION 2.6)
4 # Project name is "aesalon", and the languages used are C and C++.
5 project(aesalon C CXX)
7 # Include the build configuration.
8 include(build.config)
10 # Add the common include directory
11 include_directories(common/include)
13 # Add the source subdirectories.
14 add_subdirectory(monitor monitor/build)
15 add_subdirectory(module module/build)
16 add_subdirectory(visualizer visualizer/build)
17 add_subdirectory(tests tests/build)