2021-01-21 00:56:11 +00:00
|
|
|
add_library(usermod_pico_explorer INTERFACE)
|
|
|
|
|
|
|
|
target_sources(usermod_pico_explorer INTERFACE
|
|
|
|
${CMAKE_CURRENT_LIST_DIR}/pico_explorer.c
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(usermod_pico_explorer INTERFACE
|
|
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_compile_definitions(usermod_pico_explorer INTERFACE
|
2021-03-23 13:00:01 +00:00
|
|
|
MODULE_PICOEXPLORER_ENABLED=1
|
2021-01-21 00:56:11 +00:00
|
|
|
)
|
|
|
|
|
2021-03-22 20:43:23 +00:00
|
|
|
target_link_libraries(usermod INTERFACE usermod_pico_explorer)
|
|
|
|
|
|
|
|
set_source_files_properties(
|
|
|
|
${CMAKE_CURRENT_LIST_DIR}/pico_explorer.c
|
|
|
|
PROPERTIES COMPILE_FLAGS
|
2022-05-28 18:09:39 +01:00
|
|
|
"-Wno-discarded-qualifiers"
|
2021-03-23 13:00:01 +00:00
|
|
|
)
|