mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 19:39:06 +08:00
0d27810d17
* Revise portfile * Plugins are a default feature; fix disabling * Remove line continuations from pc file vcpkg_fixup_pkgconfig cannot handle it. * Control nvtt plugin via feature * Control dae plugin, not find_package * Control fontconfig via feature Use CMake's (3.14) find module for which vcpkg provides a wrapper. OSG links to Fontconfig::Fontconfig. OSG default is to use Fontconfig except for ios and android. * Control freetype via feature Use CMake's find module for which vcpkg provides a wrapper. OSG links to FREETYPE_LIBRARIES. * Control RestHttpDevice via feature Only this plugin needs boost. * Drop unused liblas dependency * Drop unused coin dependency Coin was meant to be used for the inventor plugin, but this plugin is disabled. * Control sdl1 via feature * Enable apps on linux * Disable apps and docs for debug * Drop example application patch * Use option, not patch, to disable DLL versioning * Fix osg plugin PDB installation * Prefer <Pkg>_LIBRARIES for linking <Pkg>_LIBRARIES carries debug+release config and transitive usage requirements. * Curl patches are obsolete now. We leverage CURL_LIBRARIES via link-libraries.patch. * Add unofficial config export * Use toolchain's windows version Fixes mingw build. * Avoid extra dependency lookups * Silence warnings about plugin control variables * Define OSG_LIBRARY_STATIC * Revise copying of plugins * Control OpenEXR via feature Unblock uwp. * Allow jasper without opengl * [osgearth] Remove obsolete geos patching The build uses exported geos config. * [osgearth] Serialize linking to avoid OOM errors * [osgearth] Fix minor portfile issues * [osgearth] Prefer <Pkg>_LIBRARIES for linking <Pkg>_LIBRARIES carries debug+release config and transitive usage requirements. * [osgearth] Use unofficial osg config * [osgearth] Fix lib installation dir * [osgearth] Revise OSGEARTH_LIBRARY_STATIC * [osgearth] Revise find_package patching * [osgearth] Revise copying of plugins * [osgearth] Disable tools for debug variant * [osgearth] Control Blend2D via feature * Update versions * Fix plugin lookup * Update versions * CR request * Update versions * [osgearth] Remove tools from default features * Update versions
82 lines
2.5 KiB
Diff
82 lines
2.5 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 7541c8d07..cc14d2160 100755
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -122,9 +122,9 @@ option(OSGEARTH_ENABLE_GEOCODER "Enable the geocoder (GDAL/OGR must be built wit
|
|
|
|
# Mobile/GLES:
|
|
IF (OSGEARTH_USE_GLES)
|
|
- find_package(OpenGLES)
|
|
+ find_package(OpenGLES REQUIRED)
|
|
ELSE ()
|
|
- find_package(OpenGL)
|
|
+ find_package(OpenGL REQUIRED)
|
|
ENDIF (OSGEARTH_USE_GLES)
|
|
|
|
# required
|
|
@@ -162,28 +162,33 @@
|
|
find_package(GDAL REQUIRED)
|
|
|
|
# optional
|
|
-find_package(GEOS)
|
|
-find_package(Sqlite3)
|
|
-find_package(Draco)
|
|
-find_package(BASISU)
|
|
-find_package(GLEW)
|
|
-find_package(Protobuf)
|
|
-find_package(WEBP)
|
|
-find_package(Blend2D)
|
|
+find_package(GEOS CONFIG REQUIRED)
|
|
+set(GEOS_LIBRARY GEOS::geos_c)
|
|
+find_package(SQLITE3 NAMES unofficial-sqlite3 REQUIRED)
|
|
+set(SQLITE3_LIBRARY unofficial::sqlite3::sqlite3)
|
|
+find_package(Draco REQUIRED)
|
|
+find_package(BASISU REQUIRED)
|
|
+find_package(GLEW REQUIRED)
|
|
+find_package(Protobuf REQUIRED)
|
|
+find_package(WEBP NAMES WebP CONFIG REQUIRED)
|
|
+set(WEBP_LIBRARY WebP::webp)
|
|
+find_package(BLEND2D CONFIG REQUIRED)
|
|
+set(BLEND2D_LIBRARY blend2d::blend2d)
|
|
|
|
if(OSGEARTH_ENABLE_PROFILING)
|
|
- find_package(Tracy)
|
|
+ find_package(Tracy REQUIRED)
|
|
endif()
|
|
|
|
if(OSGEARTH_BUILD_ZIP_PLUGIN)
|
|
- find_package(LIBZIP)
|
|
+ find_package(LIBZIP CONFIG REQUIRED)
|
|
+ set(LIBZIP_LIBRARY libzip::zip)
|
|
endif()
|
|
|
|
if(OSGEARTH_BUILD_TRITON_NODEKIT)
|
|
- find_package(Triton QUIET)
|
|
+ find_package(Triton QUIET REQUIRED)
|
|
endif()
|
|
|
|
if(OSGEARTH_BUILD_SILVERLINING_NODEKIT)
|
|
- find_package(SilverLining QUIET)
|
|
+ find_package(SilverLining QUIET REQUIRED)
|
|
endif()
|
|
|
|
@@ -193,7 +207,7 @@ SET (PROTOBUF_USE_DLLS FALSE CACHE BOOL "Set this to true if Protobuf is compile
|
|
# Duktape is the JavaScript interpreter
|
|
SET (WITH_EXTERNAL_DUKTAPE FALSE CACHE BOOL "Use bundled or system wide version of Duktape")
|
|
IF (WITH_EXTERNAL_DUKTAPE)
|
|
- find_package(Duktape)
|
|
+ find_package(Duktape REQUIRED)
|
|
ENDIF (WITH_EXTERNAL_DUKTAPE)
|
|
|
|
# Whether to install shaders (glsl files).
|
|
@@ -204,7 +218,8 @@ OPTION(OSGEARTH_INSTALL_SHADERS "Whether to deploy GLSL shaders when doing a Mak
|
|
# TinyXML is an XML parsing library
|
|
SET (WITH_EXTERNAL_TINYXML FALSE CACHE BOOL "Use bundled or system wide version of TinyXML")
|
|
IF (WITH_EXTERNAL_TINYXML)
|
|
- find_package(TinyXML)
|
|
+ find_package(TINYXML NAMES tinyxml REQUIRED)
|
|
+ set(TINYXML_LIBRARY unofficial-tinyxml::unofficial-tinyxml)
|
|
ENDIF (WITH_EXTERNAL_TINYXML)
|
|
|
|
# postfix settings for various configs
|