aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/CMakeLists.txt
blob: e20d3d1c6a6e5d64a03bec31009707080da05766 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cmake_minimum_required(VERSION 3.8)

project(math_server CXX)

option(ENABLE_TESTS "build the tests")

# C++17 is mandatory:
set(CC_CXX_STANDARD 17)

include(cmake/common.cmake)

add_subdirectory(client)
add_subdirectory(server)

if(ENABLE_TESTS)
    add_subdirectory(test)
endif()