aboutsummaryrefslogtreecommitdiff
path: root/cmake/modules/FindCrossGUID.cmake
blob: 38444f44333e8953485f878dc9d1863cdebb3dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# FindCrossGUID
# -------
# Finds the CrossGUID library
#
# This will define the following target:
#
#   CrossGUID::CrossGUID   - The CrossGUID library

macro(buildCrossGUID)
  include(cmake/scripts/common/ModuleHelpers.cmake)

  set(MODULE_LC crossguid)

  SETUP_BUILD_VARS()

  set(CROSSGUID_VERSION ${${MODULE}_VER})
  set(CROSSGUID_DEBUG_POSTFIX "-dgb")

  set(_crossguid_definitions HAVE_NEW_CROSSGUID)

  if(ANDROID)
    list(APPEND _crossguid_definitions GUID_ANDROID)
  endif()

  set(patches "${CMAKE_SOURCE_DIR}/tools/depends/target/crossguid/001-fix-unused-function.patch"
              "${CMAKE_SOURCE_DIR}/tools/depends/target/crossguid/002-disable-Wall-error.patch"
              "${CMAKE_SOURCE_DIR}/tools/depends/target/crossguid/003-add-cstdint-include.patch")

  generate_patchcommand("${patches}")

  set(CMAKE_ARGS -DCROSSGUID_TESTS=OFF
                 -DDISABLE_WALL=ON)

  BUILD_DEP_TARGET()
endmacro()

if(NOT TARGET CrossGUID::CrossGUID)
  if(ENABLE_INTERNAL_CROSSGUID)
    buildCrossGUID()
  else()
    find_package(PkgConfig)
    # Do not use pkgconfig on windows
    if(PKG_CONFIG_FOUND AND NOT WIN32)
      pkg_check_modules(PC_CROSSGUID crossguid QUIET)
      set(CROSSGUID_VERSION ${PC_CROSSGUID_VERSION})
    endif()

    find_path(CROSSGUID_INCLUDE_DIR NAMES crossguid/guid.hpp guid.h
                                    HINTS ${DEPENDS_PATH}/include ${PC_CROSSGUID_INCLUDEDIR}
                                    ${${CORE_PLATFORM_LC}_SEARCH_CONFIG}
                                    NO_CACHE)
    find_library(CROSSGUID_LIBRARY_RELEASE NAMES crossguid
                                           HINTS ${DEPENDS_PATH}/lib ${PC_CROSSGUID_LIBDIR}
                                           ${${CORE_PLATFORM_LC}_SEARCH_CONFIG}
                                           NO_CACHE)
    find_library(CROSSGUID_LIBRARY_DEBUG NAMES crossguidd crossguid-dgb
                                         HINTS ${DEPENDS_PATH}/lib ${PC_CROSSGUID_LIBDIR}
                                         ${${CORE_PLATFORM_LC}_SEARCH_CONFIG}
                                         NO_CACHE)

    # NEW_CROSSGUID >= 0.2.0 release
    if(EXISTS "${CROSSGUID_INCLUDE_DIR}/crossguid/guid.hpp")
      list(APPEND _crossguid_definitions HAVE_NEW_CROSSGUID)
    endif()
  endif()

  # Select relevant lib build type (ie CROSSGUID_LIBRARY_RELEASE or CROSSGUID_LIBRARY_DEBUG)
  include(SelectLibraryConfigurations)
  select_library_configurations(CROSSGUID)
  unset(CROSSGUID_LIBRARIES)

  include(FindPackageHandleStandardArgs)
  find_package_handle_standard_args(CrossGUID
                                    REQUIRED_VARS CROSSGUID_LIBRARY CROSSGUID_INCLUDE_DIR
                                    VERSION_VAR CROSSGUID_VERSION)

  add_library(CrossGUID::CrossGUID UNKNOWN IMPORTED)
  if(CROSSGUID_LIBRARY_RELEASE)
    set_target_properties(CrossGUID::CrossGUID PROPERTIES
                                               IMPORTED_CONFIGURATIONS RELEASE
                                               IMPORTED_LOCATION_RELEASE "${CROSSGUID_LIBRARY_RELEASE}")
  endif()
  if(CROSSGUID_LIBRARY_DEBUG)
    set_target_properties(CrossGUID::CrossGUID PROPERTIES
                                               IMPORTED_CONFIGURATIONS DEBUG
                                               IMPORTED_LOCATION_DEBUG "${CROSSGUID_LIBRARY_DEBUG}")
  endif()
  set_target_properties(CrossGUID::CrossGUID PROPERTIES
                                             INTERFACE_INCLUDE_DIRECTORIES "${CROSSGUID_INCLUDE_DIRS}"
                                             INTERFACE_COMPILE_DEFINITIONS "${_crossguid_definitions}")

  if(UNIX AND NOT (APPLE OR ANDROID))
    # Suppress mismatch warning, see https://cmake.org/cmake/help/latest/module/FindPackageHandleStandardArgs.html
    set(FPHSA_NAME_MISMATCHED 1)
    find_package(UUID REQUIRED)
    unset(FPHSA_NAME_MISMATCHED)

    if(TARGET UUID::UUID)
      add_dependencies(CrossGUID::CrossGUID UUID::UUID)
      target_link_libraries(CrossGUID::CrossGUID INTERFACE UUID::UUID)
    endif()
  endif()

  if(TARGET crossguid)
    add_dependencies(CrossGUID::CrossGUID crossguid)
  endif()

  # Add internal build target when a Multi Config Generator is used
  # We cant add a dependency based off a generator expression for targeted build types,
  # https://gitlab.kitware.com/cmake/cmake/-/issues/19467
  # therefore if the find heuristics only find the library, we add the internal build
  # target to the project to allow user to manually trigger for any build type they need
  # in case only a specific build type is actually available (eg Release found, Debug Required)
  # This is mainly targeted for windows who required different runtime libs for different
  # types, and they arent compatible
  if(_multiconfig_generator)
    if(NOT TARGET crossguid)
      buildCrossGUID()
      set_target_properties(crossguid PROPERTIES EXCLUDE_FROM_ALL TRUE)
    endif()
    add_dependencies(build_internal_depends crossguid)
  endif()

  set_property(GLOBAL APPEND PROPERTY INTERNAL_DEPS_PROP CrossGUID::CrossGUID)
endif()
mark_as_advanced(CROSSGUID_INCLUDE_DIR CROSSGUID_LIBRARY)