13 lines
514 B
CMake
13 lines
514 B
CMake
set(srcs "src/main.cpp")
|
|
#list(APPEND srcs "src/function/touch_graph.cpp")
|
|
#list(APPEND srcs "src/function/server_clock.cpp")
|
|
#list(APPEND srcs "src/connection/connect.cpp")
|
|
#list(APPEND srcs "src/function/sd_rw.cpp")
|
|
|
|
idf_component_register(
|
|
SRCS ${srcs}
|
|
#INCLUDE_DIRS "include" "include/function"
|
|
#REQUIRES "driver" "ssd1306" "esp_wifi" "nvs_flash" "esp-tls" "esp_http_client" "json" "sdmmc" "vfs"
|
|
)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu++11) |