blob: 071f22529f0567f217179765efcb7f817c46a2ec (
plain) (
tree)
|
|
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()
|