aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/CMakeLists.txt
blob: 11ee8568fe28c10b140ab802baec65f95cf15b1f (plain) (tree)
1
2
3
4
5
6
7
                                   
 



                                      
                           





                          
cmake_minimum_required(VERSION 3.8)

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()