mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
facab8c5a7
This updates the minimal supported version of CMake to 3.16, which in turn enables us to use more CMake features and have a cleaner build system. This is the version that provides most new features and also the one we use in our latest docker image for CI.
30 lines
917 B
CMake
30 lines
917 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
set(PROTO_COMPILER "protoc")
|
|
set(PROTO_C_COMPILER "protoc-c")
|
|
set(C_OUT_PATH "${CMAKE_CURRENT_LIST_DIR}/../proto-c")
|
|
set(PY_OUT_PATH "${CMAKE_CURRENT_LIST_DIR}/../python")
|
|
set(PROTOCOMM_INCL_PATH "${CMAKE_CURRENT_LIST_DIR}/../../protocomm/proto")
|
|
|
|
set(PROTO_SRCS "wifi_constants.proto"
|
|
"wifi_config.proto"
|
|
"wifi_scan.proto")
|
|
|
|
add_custom_target(c_proto
|
|
COMMAND ${PROTO_C_COMPILER} --c_out=${C_OUT_PATH} -I . -I ${PROTOCOMM_INCL_PATH} ${PROTO_SRCS}
|
|
VERBATIM
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
add_custom_target(python_proto
|
|
COMMAND ${PROTO_COMPILER} --python_out=${PY_OUT_PATH} -I . -I ${PROTOCOMM_INCL_PATH} ${PROTO_SRCS}
|
|
VERBATIM
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
add_custom_target(proto ALL
|
|
DEPENDS c_proto python_proto
|
|
VERBATIM
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
)
|