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
Guilhem Saurel
gepetto-viewer-corba
Commits
ef5319cd
Commit
ef5319cd
authored
5 years ago
by
Joseph Mirabel
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused PythonQt and QGv dependencies.
parent
38eae83c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+0
-20
0 additions, 20 deletions
CMakeLists.txt
cmake-modules/FindPythonQt.cmake
+0
-58
0 additions, 58 deletions
cmake-modules/FindPythonQt.cmake
with
0 additions
and
78 deletions
CMakeLists.txt
+
0
−
20
View file @
ef5319cd
...
...
@@ -89,26 +89,6 @@ IF(NOT CLIENT_ONLY)
INCLUDE_DIRECTORIES
(
SYSTEM
${
EIGEN3_INCLUDE_DIRS
}
${
QT_INCLUDE_DIRS
}
)
# }}}
# {{{ PythonQt settings
SET
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake-modules/
${
CMAKE_MODULE_PATH
}
)
# If GEPETTO_GUI_HAS_PYTHONQT is set to TRUE, then PythonQt is required.
IF
(
DEFINED GEPETTO_GUI_HAS_PYTHONQT AND GEPETTO_GUI_HAS_PYTHONQT
)
FIND_PACKAGE
(
PythonQt REQUIRED COMPONENTS QtAll
)
ELSE
()
FIND_PACKAGE
(
PythonQt COMPONENTS QtAll
)
ENDIF
()
# Declare option GEPETTO_GUI_HAS_PYTHONQT
# If GEPETTO_GUI_HAS_PYTHONQT was defined, this does not change its value.
IF
(
PythonQt_FOUND AND PythonQt_QtAll_FOUND
)
SET
(
GEPETTO_GUI_HAS_PYTHONQT TRUE CACHE BOOL
"Use PythonQt dependency"
)
ELSE
()
SET
(
GEPETTO_GUI_HAS_PYTHONQT FALSE CACHE BOOL
"Use PythonQt dependency"
)
ENDIF
()
ADD_OPTIONAL_DEPENDENCY
(
"qgv"
)
# }}}
# {{{ Packaging
PKG_CONFIG_APPEND_LIBS
(
${
PROJECT_NAME
}
)
...
...
This diff is collapsed.
Click to expand it.
cmake-modules/FindPythonQt.cmake
deleted
100644 → 0
+
0
−
58
View file @
38eae83c
# Find PythonQt
#
# Sets PYTHONQT_FOUND, PYTHONQT_INCLUDE_DIR, PYTHONQT_LIBRARY, PYTHONQT_QTALL_LIBRARY, PYTHONQT_LIBRARIES
#
IF
(
NOT EXISTS
"
${
PYTHONQT_INSTALL_DIR
}
"
)
FIND_PATH
(
PYTHONQT_INSTALL_DIR include/PythonQt/PythonQt.h
DOC
"Directory where PythonQt was installed."
)
ENDIF
()
# XXX Since PythonQt 3.0 is not yet cmakeified, depending
# on how PythonQt is built, headers will not always be
# installed in "include/PythonQt". That is why "src"
# is added as an option. See [1] for more details.
# [1] https://github.com/commontk/CTK/pull/538#issuecomment-86106367
FIND_PATH
(
PYTHONQT_INCLUDE_DIR PythonQt.h
PATHS
"
${
PYTHONQT_INSTALL_DIR
}
/include/PythonQt"
DOC
"Path to the PythonQt include directory"
)
SET
(
PYTHONQT_LIBRARIES
)
MACRO
(
_SEARCH_FOR COMPONENT
)
STRING
(
TOUPPER
${
COMPONENT
}
_COMP_UPPERCASE
)
FIND_LIBRARY
(
${
_COMP_UPPERCASE
}
_LIBRARY
NAMES
${
COMPONENT
}
PATHS
"
${
PYTHONQT_INSTALL_DIR
}
/lib"
DOC
"The
${
COMPONENT
}
library."
)
IF
(
NOT
${${
_COMP_UPPERCASE
}
_LIBRARY
}
STREQUAL
"
${
_COMP_UPPERCASE
}
_LIBRARY-NOTFOUND"
)
SET
(
${
COMPONENT
}
_FOUND TRUE
)
SET
(
PYTHONQT_LIBRARIES
${
PYTHONQT_LIBRARIES
}
${${
_COMP_UPPERCASE
}
_LIBRARY
}
)
ENDIF
(
NOT
${${
_COMP_UPPERCASE
}
_LIBRARY
}
STREQUAL
"
${
_COMP_UPPERCASE
}
_LIBRARY-NOTFOUND"
)
MARK_AS_ADVANCED
(
${
_COMP_UPPERCASE
}
_LIBRARY
)
ENDMACRO
(
_SEARCH_FOR COMP
)
_SEARCH_FOR
(
PythonQt
)
FOREACH
(
_COMPONENT_SHORT
${
PythonQt_FIND_COMPONENTS
}
)
SET
(
_COMPONENT
"PythonQt_
${
_COMPONENT_SHORT
}
"
)
_SEARCH_FOR
(
${
_COMPONENT
}
)
ENDFOREACH
(
_COMPONENT_SHORT
${
PythonQt_FIND_COMPONENTS
}
)
MARK_AS_ADVANCED
(
PYTHONQT_INSTALL_DIR
)
MARK_AS_ADVANCED
(
PYTHONQT_INCLUDE_DIR
)
MARK_AS_ADVANCED
(
PYTHONQT_LIBRARIES
)
# All upper case _FOUND variable is maintained for backwards compatibility.
SET
(
PythonQt_FOUND 0
)
IF
(
PYTHONQT_INCLUDE_DIR AND PYTHONQT_LIBRARIES
)
# Currently CMake'ified PythonQt only supports building against a python Release build.
ADD_DEFINITIONS
(
-DPYTHONQT_USE_RELEASE_PYTHON_FALLBACK
)
SET
(
PythonQt_FOUND 1
)
ENDIF
()
SET
(
PYTHONQT_FOUND
${
PythonQt_FOUND
}
)
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
PythonQt
REQUIRED_VARS PYTHONQT_LIBRARY PYTHONQT_INCLUDE_DIR
HANDLE_COMPONENTS
)
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