Skip to content

Commit

Permalink
Issue3439v2 (#3441)
Browse files Browse the repository at this point in the history
* Fix 3439

* revert ci tests
  • Loading branch information
sgpearse committed Aug 21, 2023
1 parent bb00782 commit 75e3fb3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Expand Up @@ -351,7 +351,15 @@ jobs:
command: |
cd /root/project/build
git checkout $CIRCLE_BRANCH
cmake3 -DCMAKE_BUILD_TYPE:String=Release -DDIST_INSTALLER:string=ON -DUSE_OMP=ON -DTHIRD_PARTY_DIR=/usr/local/VAPOR-Deps/2019-Aug -DPython_INCLUDE_DIRS=/usr/local/VAPOR-Deps/2019-Aug/include/python3.6m -DPYTHONVERSION=3.6 ..
cmake3 \
-DCMAKE_BUILD_TYPE:String=Release \
-DDIST_INSTALLER:string=ON \
-DUSE_OMP=ON \
-DTHIRD_PARTY_DIR=/usr/local/VAPOR-Deps/2019-Aug \
-DPython_INCLUDE_DIRS=/usr/local/VAPOR-Deps/2019-Aug/include/python3.6m \
-DPYTHONVERSION=3.6 \
-DQTDIR=/usr/local/VAPOR-Deps/2019-Aug/Qt/5.13.2/gcc_64 \
..
make -j2
make installer -j2
for f in VAPOR3-*.sh ; do mv "$f" "${f/Linux/CentOS7}" ; done
Expand Down
27 changes: 23 additions & 4 deletions CMakeLists.txt
Expand Up @@ -556,8 +556,27 @@ if (UNIX AND NOT APPLE)
DESTINATION ${INSTALL_LIB_DIR}
COMPONENT Dependencies
)
endif ()
endif ()
endif ()
file (GLOB HDF5_PLUGINS "${THIRD_PARTY_DIR}/HDF_Group/HDF5/1.12.2/lib/plugin/*.so")
else()
install (
DIRECTORY ${QTDIR}/plugins/xcbglintegrations
DESTINATION ${INSTALL_LIB_DIR}
COMPONENT Dependencies
)
install (
FILES ${QTDIR}/plugins/platforms/libqxcb.so
DESTINATION ${INSTALL_LIB_DIR}/platforms
COMPONENT Dependencies
)

file (GLOB XCBQPA_FILES ${QTDIR}/lib/libQt5XcbQpa.*)
install (
FILES ${XCBQPA_FILES}
DESTINATION ${INSTALL_LIB_DIR}
COMPONENT Dependencies
)
endif ()

file (GLOB XCB_FILES ${THIRD_PARTY_LIB_DIR}/libxcb-xinput.*)
install (
Expand All @@ -572,7 +591,8 @@ if (UNIX AND NOT APPLE)
DESTINATION ${INSTALL_LIB_DIR}
COMPONENT Dependencies
)
endif ()
file (GLOB_RECURSE HDF5_PLUGINS "${THIRD_PARTY_DIR}/share/plugins/*.so")
endif (DIST STREQUAL "Ubuntu")

if (BUILD_OSP)
file (GLOB INSTALL_OSPRAY_LIBS ${OSPRAYDIR}/lib/*.so*)
Expand All @@ -583,7 +603,6 @@ if (UNIX AND NOT APPLE)
)
endif ()

file (GLOB HDF5_PLUGINS "${THIRD_PARTY_DIR}/HDF_Group/HDF5/1.12.2/lib/plugin/*.so")
install (
FILES ${HDF5_PLUGINS}
DESTINATION "${INSTALL_SHARE_DIR}/plugins"
Expand Down

0 comments on commit 75e3fb3

Please sign in to comment.