memgraph/tests/CMakeLists.txt
Matej Ferencevic 6c422f3208 Remove global include directories in CMake
Summary:
All external libraries now automatically include their include directories. It
is necessary only to link to the external library using
`target_link_libraries(target library)` and the include directory of the
library will be automatically available for the binary.

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2654
2020-02-03 13:18:30 +01:00

27 lines
516 B
CMake

# 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)
# integration test binaries
add_subdirectory(integration)
# feature benchmark test binaries
add_subdirectory(feature_benchmark)