6c422f3208
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
27 lines
516 B
CMake
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)
|