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

option(ENABLE_TESTS "build the tests")

include(cmake/common.cmake)

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