-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakeLists.txt
49 lines (36 loc) · 1.5 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Set minimum required version of CMake
cmake_minimum_required(VERSION 3.18)
# Include build functions from Pico SDK
include($ENV{PICO_SDK_PATH}/external/pico_sdk_import.cmake)
# Set name of project (as PROJECT_NAME) and C/C++ standards
project(ST7735 C CXX ASM)
set(CMAKE_C_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
# Creates a pico-sdk subdirectory in our project for the libraries
pico_sdk_init()
# turn on all compiler warnings
add_compile_options(-Wall -Wextra)
# Tell CMake where to find the executable source file
add_executable(${PROJECT_NAME}
examples/ST7735_TFT_HELLO/main.cpp
#examples/ST7735_TFT_GRAPHICS/main.cpp
#examples/ST7735_TFT_FUNCTIONS_FPS/main.cpp
#examples/ST7735_TFT_TESTS/main.cpp
#examples/ST7735_TFT_BMP_DATA/main.cpp
)
# Create map/bin/hex/uf2 files
pico_add_extra_outputs(${PROJECT_NAME})
add_library(pico_st7735 INTERFACE)
target_sources(pico_st7735 INTERFACE
${CMAKE_CURRENT_LIST_DIR}/src/st7735/ST7735_TFT.cpp
${CMAKE_CURRENT_LIST_DIR}/src/st7735/ST7735_TFT_graphics.cpp
${CMAKE_CURRENT_LIST_DIR}/src/st7735/ST7735_TFT_Print.cpp
${CMAKE_CURRENT_LIST_DIR}/src/st7735/ST7735_TFT_Font.cpp
${CMAKE_CURRENT_LIST_DIR}/src/st7735/ST7735_TFT_Bitmap_Data.cpp
)
target_include_directories(pico_st7735 INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)
# Pull in pico libraries that we need
target_link_libraries(${PROJECT_NAME} pico_stdlib hardware_spi pico_st7735 )
# Enable usb output, disable uart output
pico_enable_stdio_usb(${PROJECT_NAME} 1)
pico_enable_stdio_uart(${PROJECT_NAME} 0)