You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
295 B

cmake_minimum_required (VERSION 3.10)
project (PerformanceMeasuring)
set(HEADER_FILES dummy_lib.hpp Catch2/single_include/catch2/catch.hpp)
add_executable(performance_measuring catch2_test1.cpp ${HEADER_FILES})
target_include_directories(performance_measuring PRIVATE . Catch2/single_include)