build: fix issue with passing cxx_std option, a common workaround

issue: https://gitlab.kitware.com/cmake/cmake/-/issues/23297
This commit is contained in:
Anton Maklakov
2022-03-04 16:07:38 +07:00
parent ca266cabd0
commit 745201b188
5 changed files with 21 additions and 14 deletions

View File

@ -3,4 +3,8 @@ idf_component_register(SRCS "pppd_test.cpp"
INCLUDE_DIRS "$ENV{IDF_PATH}/tools/catch"
REQUIRES esp_modem)
target_compile_features(${COMPONENT_LIB} PRIVATE cxx_std_17)
set_target_properties(${COMPONENT_LIB} PROPERTIES
CXX_STANDARD 17
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS ON
)