2024-06-06 23:45:53 +02:00
|
|
|
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})
|
|
|
|
|
2024-07-11 23:38:43 +02:00
|
|
|
target_link_libraries(pixwerx_tests PRIVATE
|
2024-06-06 23:45:53 +02:00
|
|
|
snitch::snitch
|
|
|
|
pwcore
|
|
|
|
)
|