1
0
mirror of https://github.com/raspberrypi/pico-sdk.git synced 2025-08-07 17:02:52 +03:00
Files
pico-sdk/test/hardware_sync_spin_lock_test/CMakeLists.txt
Graham Sanderson 4242010f11 Misc cleanup (#2569)
* miscellaneous cleanup:

* cleanup some #ifdefs which were slightly hacky when RP2350 was added; use HAS_ flags in preference to PICO_RP2040/RP2350
* make some dependencies more explicit - i.e. compile if the user doesn't want to include certain libraries
* cleanup some directory A -> directory B relative path names in CMakeLists.txt to be SDK root -> directory B
2025-07-18 09:37:21 -05:00

14 lines
468 B
CMake

if (NOT TARGET pico_multicore)
message("Skipping hardware_sync_spin_lock_test as pico_multicore is unavailable on this platform")
return()
endif()
add_executable(hardware_sync_spin_lock_test hardware_sync_spin_lock_test.c)
target_link_libraries(hardware_sync_spin_lock_test PRIVATE pico_test hardware_sync pico_multicore)
pico_add_extra_outputs(hardware_sync_spin_lock_test)
target_compile_definitions(hardware_sync_spin_lock_test PRIVATE
PICO_STDOUT_MUTEX=0
)