1
1
diff --git a/cmake/FindFreeImage.cmake b/cmake/FindFreeImage.cmake
2
- index 8a5836e..7f926cc 100644
2
+ index 8a5836e..d7e41d2 100644
3
3
--- a/cmake/FindFreeImage.cmake
4
4
+++ b/cmake/FindFreeImage.cmake
5
- @@ -23,7 +23,17 @@ set(minor_version ${FreeImage_FIND_VERSION_MINOR})
5
+ @@ -23,7 +23,23 @@ set(minor_version ${FreeImage_FIND_VERSION_MINOR})
6
6
# Set the full version number
7
7
set(full_version ${major_version}.${minor_version})
8
8
9
9
- if (NOT WIN32)
10
- + if(FreeImage_FOUND)
11
- + # done
12
- + elseif(1)
13
- + find_package(freeimage CONFIG)
10
+ + if(1)
11
+ + find_package(freeimage CONFIG) # not using NAMES to avoid version check
14
12
+ if(freeimage_FOUND)
15
13
+ set(FreeImage_FOUND 1)
16
14
+ set(FreeImage_LIBRARIES freeimage::FreeImage)
17
15
+ include(GzImportTarget)
18
16
+ gz_import_target(FreeImage INTERFACE)
17
+ + # sorry, no transitive link libs for pkgconfig
18
+ + include(GzPkgConfig)
19
+ + find_library(FreeImage_LIBRARY NAMES FreeImage FreeImaged NAMES_PER_DIR)
20
+ + if(FreeImage_LIBRARY MATCHES "FreeImaged[^/]*\$")
21
+ + gz_pkg_config_library_entry(FreeImage "FreeImaged")
22
+ + else()
23
+ + gz_pkg_config_library_entry(FreeImage "FreeImage")
24
+ + endif()
19
25
+ endif()
20
26
+ elseif(0)
21
27
include(GzPkgConfig)
22
28
gz_pkg_config_library_entry(FreeImage freeimage)
23
29
24
30
diff --git a/cmake/FindGTS.cmake b/cmake/FindGTS.cmake
25
- index b400483..77f1247 100644
31
+ index b400483..48cf9f7 100644
26
32
--- a/cmake/FindGTS.cmake
27
33
+++ b/cmake/FindGTS.cmake
28
34
@@ -16,7 +16,7 @@
29
35
########################################
30
36
# Find GNU Triangulation Surface Library
31
37
32
38
- if (NOT WIN32)
33
- + if (1)
39
+ + if(1)
34
40
# Configuration using pkg-config modules
35
41
include(GzPkgConfig)
36
42
gz_pkg_check_modules(GTS gts)
37
43
diff --git a/cmake/FindGzBullet.cmake b/cmake/FindGzBullet.cmake
38
- index 70f7a76..4a334d9 100644
44
+ index 70f7a76..e39a3fd 100644
39
45
--- a/cmake/FindGzBullet.cmake
40
46
+++ b/cmake/FindGzBullet.cmake
41
47
@@ -31,7 +31,7 @@ endif()
42
48
# Bullet. Force MODULE mode to use the FindBullet.cmake file distributed with
43
49
# CMake. Otherwise, we may end up using the BulletConfig.cmake file distributed
44
50
# with Bullet, which uses relative paths and may break transitive dependencies.
45
51
- find_package(Bullet MODULE ${gz_quiet_arg})
46
- + find_package(Bullet CONFIG REQUIRED )
52
+ + find_package(BULLET NAMES Bullet ${gz_quiet_arg} )
47
53
48
54
set(GzBullet_FOUND false)
49
55
# create Bullet target
50
- @@ -39,6 +39,7 @@ if(BULLET_FOUND)
51
- set(GzBullet_FOUND true)
52
-
53
- gz_import_target(GzBullet
54
- + INTERFACE
55
- TARGET_NAME GzBullet::GzBullet
56
- LIB_VAR BULLET_LIBRARIES
57
- INCLUDE_VAR BULLET_INCLUDE_DIRS
58
56
diff --git a/cmake/FindGzOGRE2.cmake b/cmake/FindGzOGRE2.cmake
59
- index 2decd84..3b71698 100644
57
+ index 2decd84..dd2c2c2 100644
60
58
--- a/cmake/FindGzOGRE2.cmake
61
59
+++ b/cmake/FindGzOGRE2.cmake
62
- @@ -144,9 +144,9 @@ macro(get_preprocessor_entry CONTENTS KEYWORD VARIABLE)
63
- endmacro()
64
-
60
+ @@ -146,7 +146,7 @@ endmacro()
65
61
find_package(PkgConfig QUIET)
66
- - if (PkgConfig_FOUND)
67
- + if (UNIX AND NOT APPLE)
62
+ if (PkgConfig_FOUND)
68
63
set(PKG_CONFIG_PATH_ORIGINAL $ENV{PKG_CONFIG_PATH})
69
64
- foreach (GZ_OGRE2_PROJECT_NAME "OGRE2" "OGRE-Next")
70
65
+ foreach (GZ_OGRE2_PROJECT_NAME "OGRE-Next")
@@ -79,33 +74,49 @@ index 2decd84..3b71698 100644
79
74
set(OGRE2_LIBRARIES ${${GZ_OGRE2_PROJECT_NAME}_LIBRARIES}) # sync possible Ogre-Next ot OGRE2
80
75
else()
81
76
# look for OGRE2 installed from source
82
- @@ -309,6 +310,8 @@ if (PkgConfig_FOUND)
77
+ @@ -264,10 +265,10 @@ if (PkgConfig_FOUND)
78
+ get_filename_component(dir_name "${dir}" NAME)
79
+ if ("${dir_name}" STREQUAL ${GZ_PKG_NAME})
80
+ set(dir_include "${dir}/RenderSystems/GL3Plus")
81
+ - else()
82
+ - set(dir_include "${dir}")
83
+ + if(EXISTS "${dir_include}")
84
+ + list(APPEND OGRE2_INCLUDE_DIRS "${dir_include}")
85
+ + endif()
86
+ endif()
87
+ - list(APPEND OGRE2_INCLUDE_DIRS ${dir_include})
88
+ endforeach()
89
+
90
+ file(READ ${OGRE2_INCLUDE}/OgrePrerequisites.h OGRE_TEMP_VERSION_CONTENT)
91
+ @@ -309,6 +310,9 @@ if (PkgConfig_FOUND)
83
92
"${OGRE2LIBNAME}${component}_d"
84
93
"${OGRE2LIBNAME}${component}.${OGRE2_VERSION}"
85
94
"${OGRE2LIBNAME}${component}"
86
95
+ "${OGRE2LIBNAME}${component}Static"
87
- + "${OGRE2LIBNAME}${component}Static_d"
96
+ + "${OGRE2LIBNAME}${component}Static_d"
97
+ + NAMES_PER_DIR
88
98
HINTS ${OGRE2_LIBRARY_DIRS})
89
99
if (NOT "${OGRE2-${component}}" STREQUAL "OGRE2-${component}-NOTFOUND")
90
100
message(STATUS " + component ${component}: found")
91
- @@ -404,13 +407,21 @@ else() #PkgConfig_FOUND
101
+ @@ -400,17 +404,22 @@ else() #PkgConfig_FOUND
102
+ set(OGRE2_VERSION_MINOR "")
103
+ set(OGRE2_RESOURCE_PATH "")
104
+
105
+ - set(OGRE2_SEARCH_VER "OGRE-${GzOGRE2_FIND_VERSION_MAJOR}.${GzOGRE2_FIND_VERSION_MINOR}")
106
+ + set(OGRE2_SEARCH_VER "OGRE-Next")
92
107
set(OGRE2_PATHS "")
93
108
set(OGRE2_INC_PATHS "")
94
109
foreach(_rootPath ${VCPKG_CMAKE_FIND_ROOT_PATH})
95
110
- list(APPEND OGRE2_PATHS "${_rootPath}/lib/${OGRE2_SEARCH_VER}/")
96
111
- list(APPEND OGRE2_PATHS "${_rootPath}/lib/${OGRE2_SEARCH_VER}/manual-link/")
97
- - list(APPEND OGRE2_INC_PATHS "${_rootPath}/include/${OGRE2_SEARCH_VER}")
98
- + get_filename_component(debug_dir "${_rootPath}" NAME)
99
- + if(debug_dir MATCHES "debug" AND CMAKE_BUILD_TYPE MATCHES Debug OR NOT debug_dir MATCHES "debug" AND CMAKE_BUILD_TYPE MATCHES Release)
100
- + list(APPEND OGRE2_PATHS "${_rootPath}/lib/")
101
- + list(APPEND OGRE2_PATHS "${_rootPath}/lib/manual-link/")
102
- + endif()
103
- + list(APPEND OGRE2_INC_PATHS "${_rootPath}/include/OGRE-Next")
112
+ + list(APPEND OGRE2_PATHS "${_rootPath}/lib")
113
+ + list(APPEND OGRE2_PATHS "${_rootPath}/lib/manual-link")
114
+ list(APPEND OGRE2_INC_PATHS "${_rootPath}/include/${OGRE2_SEARCH_VER}")
104
115
endforeach()
105
116
106
117
find_library(OGRE2_LIBRARY
107
118
- NAMES "OgreMain"
108
- + NAMES
119
+ + NAMES
109
120
+ "OgreNextMain"
110
121
+ "OgreNextMainStatic"
111
122
+ "OgreNextMain_d"
@@ -114,7 +125,7 @@ index 2decd84..3b71698 100644
114
125
HINTS ${OGRE2_PATHS}
115
126
NO_DEFAULT_PATH)
116
127
117
- @@ -450,8 +461 ,11 @@ else() #PkgConfig_FOUND
128
+ @@ -450,8 +459 ,11 @@ else() #PkgConfig_FOUND
118
129
119
130
find_library(${PREFIX}_LIBRARY
120
131
NAMES
@@ -124,19 +135,19 @@ index 2decd84..3b71698 100644
124
135
+ "OgreNext${COMPONENT}_d"
125
136
+ "OgreNext${COMPONENT}Static"
126
137
+ "OgreNext${COMPONENT}Static_d"
127
- + NAMES_PER_DIR
138
+ + NAMES_PER_DIR
128
139
HINTS
129
140
${OGRE2_LIBRARY_DIRS}
130
141
NO_DEFAULT_PATH)
131
- @@ -510 ,6 +524 ,7 @@ else() #PkgConfig_FOUND
132
- ogre_find_plugin(Plugin_ParticleFX OgreParticleFXPrerequisites .h PlugIns/ParticleFX/include )
133
- ogre_find_plugin(RenderSystem_GL3Plus OgreGL3PlusRenderSystem .h RenderSystems/GL3Plus/include )
134
- ogre_find_plugin(RenderSystem_Direct3D11 OgreD3D11RenderSystem .h RenderSystems/Direct3D11/include )
142
+ @@ -506 ,6 +518 ,7 @@ else() #PkgConfig_FOUND
143
+ ogre_find_component(Overlay OgreOverlaySystem .h "Overlay" )
144
+ ogre_find_component(HlmsPbs OgreHlmsPbs .h Hlms/Pbs/ )
145
+ ogre_find_component(HlmsUnlit OgreHlmsUnlit .h Hlms/Unlit )
135
146
+ ogre_find_component(PlanarReflections OgrePlanarReflections.h PlanarReflections)
136
147
137
- foreach(component ${GzOGRE2_FIND_COMPONENTS} )
138
- set(PREFIX OGRE2_${component} )
139
- @@ -521,7 +536 ,7 @@ else() #PkgConfig_FOUND
148
+ ogre_find_plugin(Plugin_ParticleFX OgreParticleFXPrerequisites.h PlugIns/ParticleFX/include )
149
+ ogre_find_plugin(RenderSystem_GL3Plus OgreGL3PlusRenderSystem.h RenderSystems/GL3Plus/include )
150
+ @@ -521,7 +534 ,7 @@ else() #PkgConfig_FOUND
140
151
if(${HLMS_POS} GREATER -1)
141
152
foreach (dir ${OGRE2_INCLUDE_DIRS})
142
153
get_filename_component(dir_name "${dir}" NAME)
@@ -145,56 +156,3 @@ index 2decd84..3b71698 100644
145
156
set(dir_include "${dir}/Hlms/Common")
146
157
if (EXISTS ${dir_include})
147
158
list(APPEND component_INCLUDE_DIRS ${dir_include})
148
- diff --git a/cmake/FindTINYXML2.cmake b/cmake/FindTINYXML2.cmake
149
- index 5a5a147..68ba2a3 100644
150
- --- a/cmake/FindTINYXML2.cmake
151
- +++ b/cmake/FindTINYXML2.cmake
152
- @@ -18,11 +18,16 @@
153
-
154
- include(GzPkgConfig)
155
-
156
- - # Use pkg_check_modules to start
157
- - gz_pkg_check_modules_quiet(TINYXML2 tinyxml2)
158
-
159
- # If that failed, then fall back to manual detection (necessary for MacOS)
160
- if(NOT TINYXML2_FOUND)
161
- + find_package(TINYXML2 NAMES tinyxml2)
162
- + if(TINYXML2_FOUND)
163
- + set(TINYXML2_LIBRARIES tinyxml2::tinyxml2)
164
- + include(GzImportTarget)
165
- + gz_import_target(TINYXML2 INTERFACE)
166
- + endif()
167
- + elseif(0)
168
-
169
- if(NOT TINYXML2_FIND_QUIETLY)
170
- message(STATUS "Attempting manual search for tinyxml2")
171
- diff --git a/cmake/GzFindPackage.cmake b/cmake/GzFindPackage.cmake
172
- index 93da803..22fdec8 100644
173
- --- a/cmake/GzFindPackage.cmake
174
- +++ b/cmake/GzFindPackage.cmake
175
- @@ -163,6 +163,7 @@ macro(gz_find_package PACKAGE_NAME_)
176
- # Parse the arguments
177
- _gz_cmake_parse_arguments(gz_find_package "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
178
-
179
- + include("${CMAKE_CURRENT_LIST_DIR}/vcpkg/${PACKAGE_NAME}.cmake" OPTIONAL)
180
- #------------------------------------
181
- # Construct the arguments to pass to find_package
182
- set(${PACKAGE_NAME}_find_package_args ${PACKAGE_NAME})
183
- @@ -177,6 +178,8 @@ macro(gz_find_package PACKAGE_NAME_)
184
-
185
- if(gz_find_package_EXACT)
186
- list(APPEND ${PACKAGE_NAME}_find_package_args EXACT)
187
- + elseif(gz_find_package_VERSION AND NOT gz_find_package_PKGCONFIG_VER_COMPARISON)
188
- + set(gz_find_package_PKGCONFIG_VER_COMPARISON >=)
189
- endif()
190
-
191
- if(gz_find_package_CONFIG)
192
- @@ -344,7 +347,7 @@ macro(gz_find_package PACKAGE_NAME_)
193
- # ${component}_CMAKE_DEPENDENCIES variables that are specific to those
194
- # componenets
195
- foreach(component ${gz_find_package_REQUIRED_BY})
196
- - if(NOT ${component}_${PACKAGE_NAME}_PRIVATE)
197
- + if(NOT ${component}_${PACKAGE_NAME}_PRIVATE OR NOT BUILD_SHARED_LIBS)
198
- gz_string_append(${component}_CMAKE_DEPENDENCIES "${${PACKAGE_NAME}_find_dependency}" DELIM "\n")
199
- endif()
200
- endforeach()
0 commit comments