Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gepetto-viewer-corba
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
gepetto-viewer-corba
Commits
368b39d1
Unverified
Commit
368b39d1
authored
6 years ago
by
Guilhem Saurel
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #91 from nim65s/devel
[CMake] look for openscenegraph-osgQt5 for Qt5
parents
d94d64c4
66d00467
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+8
-1
8 additions, 1 deletion
CMakeLists.txt
src/gui/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/gui/CMakeLists.txt
tests/CMakeLists.txt
+1
-1
1 addition, 1 deletion
tests/CMakeLists.txt
with
10 additions
and
3 deletions
CMakeLists.txt
+
8
−
1
View file @
368b39d1
...
@@ -58,7 +58,14 @@ ADD_REQUIRED_DEPENDENCY("omniORB4 >= 4.1.4")
...
@@ -58,7 +58,14 @@ ADD_REQUIRED_DEPENDENCY("omniORB4 >= 4.1.4")
IF
(
NOT CLIENT_ONLY
)
IF
(
NOT CLIENT_ONLY
)
ADD_REQUIRED_DEPENDENCY
(
"openscenegraph >= 3.2"
)
ADD_REQUIRED_DEPENDENCY
(
"openscenegraph >= 3.2"
)
ADD_REQUIRED_DEPENDENCY
(
"openscenegraph-osgQt"
)
IF
(
USE_QT4 OR OPENSCENEGRAPH_VERSION VERSION_LESS 3.5.7
)
SET
(
OSGQT_LIB_NAME openscenegraph-osgQt
)
ELSE
(
USE_QT4 OR OPENSCENEGRAPH_VERSION VERSION_LESS 3.5.7
)
SET
(
OSGQT_LIB_NAME openscenegraph-osgQt5
)
ENDIF
(
USE_QT4 OR OPENSCENEGRAPH_VERSION VERSION_LESS 3.5.7
)
ADD_REQUIRED_DEPENDENCY
(
${
OSGQT_LIB_NAME
}
)
ADD_REQUIRED_DEPENDENCY
(
"openthreads >= 2.6"
)
ADD_REQUIRED_DEPENDENCY
(
"openthreads >= 2.6"
)
ADD_REQUIRED_DEPENDENCY
(
"gepetto-viewer"
)
ADD_REQUIRED_DEPENDENCY
(
"gepetto-viewer"
)
ADD_REQUIRED_DEPENDENCY
(
"urdfdom"
)
ADD_REQUIRED_DEPENDENCY
(
"urdfdom"
)
...
...
This diff is collapsed.
Click to expand it.
src/gui/CMakeLists.txt
+
1
−
1
View file @
368b39d1
...
@@ -88,7 +88,7 @@ TARGET_LINK_LIBRARIES(gepetto-gui ${PROJECT_NAME} ${QT_LIBRARIES})
...
@@ -88,7 +88,7 @@ TARGET_LINK_LIBRARIES(gepetto-gui ${PROJECT_NAME} ${QT_LIBRARIES})
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui gepetto-viewer
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui gepetto-viewer
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui openscenegraph
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui openscenegraph
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui openthreads
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui openthreads
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui
openscenegraph-osgQt
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui
${
OSGQT_LIB_NAME
}
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui omniORB4
)
PKG_CONFIG_USE_DEPENDENCY
(
gepetto-gui omniORB4
)
IF
(
GEPETTO_GUI_HAS_PYTHONQT
)
IF
(
GEPETTO_GUI_HAS_PYTHONQT
)
TARGET_LINK_LIBRARIES
(
gepetto-gui
${
PYTHONQT_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
gepetto-gui
${
PYTHONQT_LIBRARIES
}
)
...
...
This diff is collapsed.
Click to expand it.
tests/CMakeLists.txt
+
1
−
1
View file @
368b39d1
...
@@ -39,7 +39,7 @@ MACRO(ADD_TESTCASE NAME GENERATED)
...
@@ -39,7 +39,7 @@ MACRO(ADD_TESTCASE NAME GENERATED)
TARGET_LINK_LIBRARIES
(
${
NAME
}
${
QT_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
${
NAME
}
${
QT_LIBRARIES
}
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
openscenegraph
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
openscenegraph
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
openthreads
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
openthreads
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
openscenegraph-osgQt
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
${
OSGQT_LIB_NAME
}
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
gepetto-viewer
)
PKG_CONFIG_USE_DEPENDENCY
(
${
NAME
}
gepetto-viewer
)
ENDMACRO
(
ADD_TESTCASE
)
ENDMACRO
(
ADD_TESTCASE
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment