8 lines
250 B
CMake
8 lines
250 B
CMake
|
|
add_library(debug_log STATIC debug_log.cpp)
|
||
|
|
|
||
|
|
target_include_directories(debug_log PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
|
|
||
|
|
target_compile_options(debug_log PRIVATE -Wall -Wextra -Wno-unused-parameter)
|
||
|
|
|
||
|
|
target_link_libraries(debug_log PUBLIC pico_stdlib)
|