Skip to content

Commit

Permalink
Mark macOS CMake variables as advanced
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed May 16, 2024
1 parent 2eaae20 commit 8703c54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if("${CMAKE_VERSION}" VERSION_LESS_EQUAL "${GDCM_MAX_VALIDATED_CMAKE_VERSION}")
else()
set(GDCM_CMAKE_POLICY_VERSION "${GDCM_MAX_VALIDATED_CMAKE_VERSION}")
endif()
cmake_policy(VERSION ${GDCM_CMAKE_POLICY_VERSION})
cmake_policy(VERSION ${GDCM_CMAKE_POLICY_VERSION})

# GDCM version 3.0.0 will only support C++11 and greater
if(CMAKE_CXX_STANDARD EQUAL "98" )
Expand All @@ -23,7 +23,7 @@ project(GDCM
## NOTE: the "DESCRIPTION" feature of project() was introduced in cmake 3.10.0
set(PROJECT_DESCRIPTION "GDCM - Grassroots DICOM. GDCM is yet another DICOM library.")

## Set aliases for backwards compatibility. GDCM_VERSION_XXX are configured by the project() command
## Set aliases for backwards compatibility. GDCM_VERSION_XXX are configured by the project() command
set(GDCM_MAJOR_VERSION ${GDCM_VERSION_MAJOR})
set(GDCM_MINOR_VERSION ${GDCM_VERSION_MINOR})
set(GDCM_BUILD_VERSION ${GDCM_VERSION_PATCH})
Expand Down Expand Up @@ -564,7 +564,10 @@ if(APPLE)
if(GDCM_USE_COREFOUNDATION_LIBRARY)
find_library(COREFOUNDATION_LIBRARY CoreFoundation )
endif()
mark_as_advanced(COREFOUNDATION_LIBRARY)
mark_as_advanced(
GDCM_USE_COREFOUNDATION_LIBRARY
COREFOUNDATION_LIBRARY
)
endif()

#-----------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions Utilities/gdcmopenjpeg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ endif()
if (APPLE)
list(APPEND OPENJPEG_LIBRARY_PROPERTIES INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/${OPENJPEG_INSTALL_LIB_DIR}")
option(OPJ_USE_DSYMUTIL "Call dsymutil on binaries after build." OFF)
mark_as_advanced(OPJ_USE_DSYMUTIL)
endif()

#-----------------------------------------------------------------------------
Expand Down

0 comments on commit 8703c54

Please sign in to comment.