Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
ebfeb261
Commit
ebfeb261
authored
Apr 29, 2016
by
Jan Möbius
Browse files
Install qt plugins and qt.conf
parent
9f51e9fa
Pipeline
#1527
failed with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Apps/CMakeLists.txt
View file @
ebfeb261
...
...
@@ -85,6 +85,16 @@ if ( BUILD_APPS )
if
(
WIN32
)
FILE
(
GLOB files_install_app_dlls
"
${
CMAKE_BINARY_DIR
}
/Build/*.dll"
)
INSTALL
(
FILES
${
files_install_app_dlls
}
DESTINATION .
)
# platform plugins for qt shoulb be installed along with the apps to run on the target systems
if
(
EXISTS
${
CMAKE_BINARY_DIR
}
/Build/plugins/platform
)
FILE
(
GLOB files_install_app_platform_dlls
"
${
CMAKE_BINARY_DIR
}
/Build/plugins/platform/*.dll"
)
INSTALL
(
FILES
${
files_install_app_platform_dlls
}
DESTINATION .
)
# Create a qt.conf file to find plugins on windows
configure_file
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/Qt/qt.conf.in Build/qt.conf COPYONLY
)
endif
()
endif
()
else
()
# QT ,Opengl or glut not found
...
...
src/OpenMesh/Apps/Qt/qt.conf.in
0 → 100644
View file @
ebfeb261
[Paths]
Plugins = plugins
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment