mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
8 lines
501 B
CMake
8 lines
501 B
CMake
add_executable(end_to_end_benchmark end_to_end_benchmark.cpp)
|
|
target_link_libraries(end_to_end_benchmark benchmark::benchmark ConcretelangSupport EndToEndFixture)
|
|
set_source_files_properties(end_to_end_benchmark.cpp PROPERTIES COMPILE_FLAGS "-fno-rtti")
|
|
|
|
add_executable(end_to_end_mlbench end_to_end_mlbench.cpp)
|
|
target_link_libraries(end_to_end_mlbench benchmark::benchmark ConcretelangSupport EndToEndFixture)
|
|
set_source_files_properties(end_to_end_mlbench.cpp PROPERTIES COMPILE_FLAGS "-fno-rtti")
|