-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace OpenGL dependency CMake variables with targets (#1552)
- Loading branch information
Showing
5 changed files
with
76 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright (c) 2011-2021, The DART development contributors | ||
# All rights reserved. | ||
# | ||
# The list of contributors can be found at: | ||
# https://github.com/dartsim/dart/blob/master/LICENSE | ||
# | ||
# This file is provided under the "BSD-style" License | ||
|
||
if (CMAKE_VERSION VERSION_LESS 3.12) | ||
get_property(old_find_library_use_lib64_paths GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS) | ||
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE) | ||
endif() | ||
|
||
find_package(OpenSceneGraph 3.0 QUIET | ||
COMPONENTS osg osgViewer osgManipulator osgGA osgDB osgShadow | ||
) | ||
|
||
if (CMAKE_VERSION VERSION_LESS 3.12) | ||
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS ${old_find_library_use_lib64_paths}) | ||
endif() | ||
|
||
# It seems that OPENSCENEGRAPH_FOUND will inadvertently get set to true when | ||
# OpenThreads is found, even if OpenSceneGraph is not installed. This is quite | ||
# possibly a bug in OSG's cmake configuration file. For now, it seems that | ||
# requiring OSG_FOUND to be true as well fixes this. | ||
if(OPENSCENEGRAPH_FOUND AND OSG_FOUND) | ||
if(DART_VERBOSE) | ||
message(STATUS "Looking for OpenSceneGraph - ${OPENSCENEGRAPH_VERSION} found") | ||
endif() | ||
else() | ||
# dart-gui-osg requires both OSG and OpenThreads. This section attempts to | ||
# identify which of those are missing from the building machine and offer | ||
# advice to the user for getting dart-gui-osg to build. | ||
find_package(OpenThreads QUIET) | ||
if(OPENTHREADS_FOUND) | ||
set(warning_msg "Could NOT find OpenSceneGraph") | ||
else() | ||
if(OSG_LIBRARY) | ||
set(warning_msg "Could NOT find OpenThreads") | ||
else() | ||
set(warning_msg "Could NOT find OpenSceneGraph nor OpenThreads") | ||
endif() | ||
endif() | ||
message(STATUS "${warning_msg} -- we will skip dart-gui-osg\n" | ||
"If you believe you do have both OSG and OpenThreads installed, try setting OSG_DIR") | ||
return() | ||
endif() | ||
|
||
# Define an imported target "osg::osg" if it's not defined in the provided find | ||
# module. | ||
# | ||
# This is required to make the DART module that uses OpenSceneGraph relocatable. | ||
# For that, any DART targets (e.g., dart-gui-osg) should use "osg::osg" instead | ||
# of OPENSCENEGRAPH_INCLUDE_DIRS and OPENSCENEGRAPH_LIBRARIES because the | ||
# variables contain absolute paths of OpenSceneGraph that could be different in | ||
# where the system that DART is built and where the system that consumes DART. | ||
if((OPENSCENEGRAPH_FOUND OR OpenSceneGraph_FOUND) AND NOT TARGET osg::osg) | ||
add_library(osg::osg INTERFACE IMPORTED) | ||
set_target_properties(osg::osg PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${OPENSCENEGRAPH_INCLUDE_DIRS}" | ||
INTERFACE_LINK_LIBRARIES "${OPENSCENEGRAPH_LIBRARIES}" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters