We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1634fdd commit 621c317Copy full SHA for 621c317
cpp/cmake/IceTargets.cmake
@@ -19,11 +19,11 @@ if(NOT DEFINED Ice_VERSION)
19
file(STRINGS "${Ice_INCLUDE_DIR}/Ice/Config.h" _ice_config_h_content REGEX "#define ICE_([A-Z]+)_VERSION ")
20
21
if("${_ice_config_h_content}" MATCHES "#define ICE_STRING_VERSION \"([^\"]+)\"")
22
- set(Ice_VERSION "${CMAKE_MATCH_1}" DOC "Ice version")
+ set(Ice_VERSION "${CMAKE_MATCH_1}")
23
endif()
24
25
if("${_ice_config_h_content}" MATCHES "#define ICE_SO_VERSION \"([^\"]+)\"")
26
- set(Ice_SO_VERSION "${CMAKE_MATCH_1}" DOC "Ice SO version")
+ set(Ice_SO_VERSION "${CMAKE_MATCH_1}")
27
28
29
unset(_ice_config_h_content)
0 commit comments