This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/509-update-cxx-support-to-cxx14 in repository https://gitbox.apache.org/repos/asf/celix.git
commit 93ea73dde04a8f23c6ece31201fd4a5cb4fc06a5 Author: Pepijn Noltes <[email protected]> AuthorDate: Sun Oct 1 16:44:15 2023 +0200 #509: Reintroduce CELIX_CXX17 option. This is still needed. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0a67c35f..0705279c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -164,6 +164,7 @@ option(CELIX_INSTALL_DEPRECATED_API "whether to install (and use) deprecated api option(CELIX_USE_ZIP_INSTEAD_OF_JAR "Default Celix cmake command will use jar to package bundle (if found). This option enforces Celix to use zip instead." OFF) option(CELIX_CXX14 "Build C++14 libraries and bundles. Note for tests C++ is always used." ON) +option(CELIX_CXX17 "Build C++17 libraries and bundles. Note for tests C++ is always used." ON) if (CELIX_CXX17 AND NOT CELIX_CXX14) set(CELIX_CXX14 ON) endif ()
