start to refactor for C++23
This commit is contained in:
parent
42c7221318
commit
cd19543627
19 changed files with 489 additions and 434 deletions
21
tests/CMakeLists.txt
Normal file
21
tests/CMakeLists.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
include(FetchContent)
|
||||
|
||||
FetchContent_Declare(snitch
|
||||
GIT_REPOSITORY https://github.com/snitch-org/snitch.git
|
||||
GIT_TAG v1.2.5) # update version number as needed
|
||||
|
||||
FetchContent_MakeAvailable(snitch)
|
||||
|
||||
set(pixwerx_test_files
|
||||
pw_test_core.cpp
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
add_executable(pixwerx_tests ${pixwerx_test_files})
|
||||
|
||||
target_link_libraries(pixwerx_tests PRIVATE
|
||||
snitch::snitch
|
||||
pwcore
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue