raspberrypi/433/rc-switch-pico/examples/Forward/CMakeLists.txt
2023-04-14 10:05:31 +08:00

32 lines
631 B
CMake

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)
# 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)