raspberrypi/433MHZ/rc-switch-pico/examples/Forward/CMakeLists.txt

36 lines
673 B
CMake
Raw Normal View History

2023-04-14 10:05:31 +08:00
add_executable(forward
Forward.cc
../../radio-switch.cc
)
add_compile_options(-Wall
-Wno-format # int != int32_t as far as the compiler is concerned because gcc has int32_t as long int
-Wno-unused-function # we have some for the docs that aren't called
-Wno-maybe-uninitialized
)
# Pull in our pico_stdlib which pulls in commonly used features
target_link_libraries(forward
pico_stdlib
hardware_adc
pico_multicore
pico_runtime
hardware_sleep
hardware_rtc
)
2023-04-14 10:05:31 +08:00
# enable usb output, disable uart output
pico_enable_stdio_usb(forward 1)
pico_enable_stdio_uart(forward 0)
# create map/bin/hex file etc.
pico_add_extra_outputs(forward)