aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/CMakeLists.txt
blob: 0d02300285b9e54cccbd6182049365a924f3dea5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
project(math_server CXX)

option(ENABLE_TESTS "build the tests")

include(common.cmake)

add_subdirectory(client)
add_subdirectory(server)
if(ENABLE_TESTS)
    add_subdirectory(test)
endif()