intersection_bench/CMakeLists.txt
2025-04-28 12:01:47 +03:00

13 lines
360 B
CMake

cmake_minimum_required(VERSION 3.22.0)
project(intersection_bench)
set(CMAKE_CXX_FLAGS "-Wall -Wextra")
set(CMAKE_CXX_FLAGS_DEBUG "-g")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
find_package(Catch2 REQUIRED)
add_executable(intersection_bench test.cpp)
target_link_libraries(intersection_bench PRIVATE Catch2::Catch2WithMain)