13 lines
261 B
CMake
13 lines
261 B
CMake
add_library(eth STATIC eth.cpp)
|
|
|
|
target_include_directories(eth PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
target_compile_options(eth PRIVATE -Wall -Wextra -Wno-unused-parameter)
|
|
|
|
target_link_libraries(eth PUBLIC
|
|
util
|
|
debug_log
|
|
w6300
|
|
pico_unique_id
|
|
)
|