blob: 3d0d43903c25ff80ee623ab3afc81a5c7fd94477 (
plain)
1
2
3
4
5
6
7
8
9
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
message(FATAL_ERROR "cmake must be invoked with the top level directory")
endif()
# Benchmarking tools
add_subdirectory(perf)
# Unit tests
add_subdirectory(unit)
|