memgraph/tests/CMakeLists.txt

30 lines
674 B
CMake
Raw Normal View History

file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/unit)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/benchmark)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/property_based)
2016-12-22 22:51:16 +08:00
include_directories(${GTEST_INCLUDE_DIR})
# benchmark test binaries
add_subdirectory(benchmark)
# macro_benchmark test binaries
add_subdirectory(macro_benchmark)
# stress test binaries
add_subdirectory(stress)
# concurrent test binaries
add_subdirectory(concurrent)
# manual test binaries
add_subdirectory(manual)
# unit test binaries
add_subdirectory(unit)
# property based test binaries
add_subdirectory(property_based)
# raft binaries
add_subdirectory(distributed/raft)