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

                                   



                                      
                           





                          
cmake_minimum_required(VERSION 3.1)

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