Update CMake usage to enable C++17 (#156)

The target_compile_features command allows setting PUBLIC compile features for the library, making it implicit for the applications linking it. This reduces the CMake boilerplate required to set up a dependent project (eg. ftxui-starter).
This commit is contained in:
Tushar Maheshwari
2021-07-17 12:46:02 +05:30
committed by GitHub
parent a56bb50807
commit 5ee4ec40de
7 changed files with 2 additions and 10 deletions

View File

@@ -36,7 +36,6 @@ target_include_directories(tests
)
target_compile_options(tests PRIVATE -fsanitize=address)
target_link_libraries(tests PRIVATE -fsanitize=address)
set_property(TARGET tests PROPERTY CXX_STANDARD 17)
if (NOT MSVC)
include(cmake/ftxui_benchmark.cmake)