Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add osgearth/3.2 #7535

Merged
merged 13 commits into from
Jan 20, 2022
6 changes: 5 additions & 1 deletion recipes/osgearth/all/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ if(WIN32)
add_compile_definitions(NOGDI)
endif()

# find_package and set the expected variables
# osgearth ships with custom cmake find modules. Unfortunately these set
# different variables than the ones generated by conan (most notably *_LIBRARY
# instead of *_LIBRARIES, but also different names). In the following
# these different variables are set using the variables set by conan's
# find modules.

# OSG
find_package(OpenSceneGraph REQUIRED)
Expand Down
4 changes: 2 additions & 2 deletions recipes/osgearth/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class OsgearthConan(ConanFile):
name = "osgearth"
license = "OSGEARTH SOFTWARE LICENSE"
license = "LGPL-3.0"
url = "https://github.com/conan-io/conan-center-index"
description = "osgEarth is a C++ geospatial SDK and terrain engine. \
Just create a simple XML file, point it at your map data, \
Expand Down Expand Up @@ -124,7 +124,7 @@ def requirements(self):
if self.options.with_sqlite3:
self.requires("sqlite3/3.36.0")
if self.options.with_draco:
self.requires("draco/[>1.3.6]")
self.requires("draco")
maspri marked this conversation as resolved.
Show resolved Hide resolved
# if self.options.with_basisu:
# self.requires("basisu")
# if self.options.with_glew:
Expand Down