diff options
author | bd <bdunaisky@umass.edu> | 2025-03-02 01:40:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-02 01:40:17 +0000 |
commit | c0cc99e78ded54b6f5958ce5fd41eb88c74ebc07 (patch) | |
tree | 5e47000b01d7c274dedfda349ed83304f03bf36f /CMakeLists.txt | |
parent | 428cdf3d8be3d46ca071967596083da98840fbbd (diff) | |
parent | 510ba64929cd7beb002508936fed9af4215a5d94 (diff) |
Merge pull request #7 from bdunahu/dev-sid
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) |