mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
14 lines
335 B
CMake
14 lines
335 B
CMake
if(CONCRETELANG_UNIT_TESTS OR CONCRETELANG_BENCHMARK)
|
|
add_subdirectory(end_to_end_fixture)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
endif()
|
|
|
|
if(CONCRETELANG_UNIT_TESTS)
|
|
add_subdirectory(unit_tests)
|
|
add_subdirectory(end_to_end_tests)
|
|
endif()
|
|
|
|
if(CONCRETELANG_BENCHMARK)
|
|
add_subdirectory(end_to_end_benchmarks)
|
|
endif()
|