diff options
author | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-01 20:26:44 -0500 |
---|---|---|
committer | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-01 20:26:44 -0500 |
commit | 510ba64929cd7beb002508936fed9af4215a5d94 (patch) | |
tree | 5e47000b01d7c274dedfda349ed83304f03bf36f /CMakeLists.txt | |
parent | 428cdf3d8be3d46ca071967596083da98840fbbd (diff) |
windows environment fix, catch2 version change changes included
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 03f0ca3..2029ba0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,8 @@ cmake_minimum_required(VERSION 3.5) project(risc_vector) +#set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + # cpp standard set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -28,7 +30,7 @@ set(TESTDIR tests) # test executable add_executable(tests ${SRCS} ${TESTDIR}/tests.cc) -target_link_libraries(tests PRIVATE Catch2::Catch2 PRIVATE Python3::Python) +target_link_libraries(tests PRIVATE Catch2::Catch2WithMain PRIVATE Python3::Python) # test discovery include(CTest) |