1717include (GoogleapisConfig )
1818set (DOXYGEN_PROJECT_NAME "OS Config API C++ Client" )
1919set (DOXYGEN_PROJECT_BRIEF "A C++ Client Library for the OS Config API" )
20- set (DOXYGEN_PROJECT_NUMBER "${PROJECT_VERSION} (Experimental) " )
20+ set (DOXYGEN_PROJECT_NUMBER "${PROJECT_VERSION} " )
2121set (DOXYGEN_EXCLUDE_SYMBOLS "internal" "osconfig_internal" "osconfig_testing"
2222 "examples" )
2323set (DOXYGEN_EXAMPLE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /quickstart)
@@ -66,14 +66,13 @@ target_link_libraries(
6666google_cloud_cpp_add_common_options (google_cloud_cpp_osconfig )
6767set_target_properties (
6868 google_cloud_cpp_osconfig
69- PROPERTIES EXPORT_NAME google-cloud-cpp::experimental- osconfig
69+ PROPERTIES EXPORT_NAME google-cloud-cpp::osconfig
7070 VERSION "${PROJECT_VERSION} "
7171 SOVERSION "${PROJECT_VERSION_MAJOR} " )
7272target_compile_options (google_cloud_cpp_osconfig
7373 PUBLIC ${GOOGLE_CLOUD_CPP_EXCEPTIONS_FLAG} )
7474
75- add_library (google-cloud-cpp::experimental-osconfig ALIAS
76- google_cloud_cpp_osconfig )
75+ add_library (google-cloud-cpp::osconfig ALIAS google_cloud_cpp_osconfig )
7776
7877# Create a header-only library for the mocks. We use a CMake `INTERFACE` library
7978# for these, a regular library would not work on macOS (where the library needs
@@ -92,11 +91,10 @@ add_library(google_cloud_cpp_osconfig_mocks INTERFACE)
9291target_sources (google_cloud_cpp_osconfig_mocks INTERFACE ${mock_files} )
9392target_link_libraries (
9493 google_cloud_cpp_osconfig_mocks
95- INTERFACE google-cloud-cpp::experimental-osconfig GTest::gmock_main
96- GTest::gmock GTest::gtest )
97- set_target_properties (
98- google_cloud_cpp_osconfig_mocks
99- PROPERTIES EXPORT_NAME google-cloud-cpp::experimental-osconfig_mocks )
94+ INTERFACE google-cloud-cpp::osconfig GTest::gmock_main GTest::gmock
95+ GTest::gtest )
96+ set_target_properties (google_cloud_cpp_osconfig_mocks
97+ PROPERTIES EXPORT_NAME google-cloud-cpp::osconfig_mocks )
10098target_include_directories (
10199 google_cloud_cpp_osconfig_mocks
102100 INTERFACE $<BUILD_INTERFACE :${PROJECT_SOURCE_DIR} >
@@ -109,7 +107,7 @@ include(CTest)
109107if (BUILD_TESTING)
110108 add_executable (osconfig_quickstart "quickstart/quickstart.cc" )
111109 target_link_libraries (osconfig_quickstart
112- PRIVATE google-cloud-cpp::experimental- osconfig )
110+ PRIVATE google-cloud-cpp::osconfig )
113111 google_cloud_cpp_add_common_options (osconfig_quickstart )
114112 add_test (
115113 NAME osconfig_quickstart
0 commit comments