6 lines
181 B
CMake
6 lines
181 B
CMake
|
add_library(st7789
|
||
|
${CMAKE_CURRENT_LIST_DIR}/st7789.cpp)
|
||
|
|
||
|
# Pull in pico libraries that we need
|
||
|
target_link_libraries(st7789 pico_stdlib hardware_spi hardware_pwm hardware_dma)
|