From b023f6a31d752c969293d62c61a69f5a0469c5ba Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Thu, 16 Aug 2018 13:58:50 +0200 Subject: [PATCH] Fix sillyness preventing install of IfcGeomServer --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index dd8fb09002..9a52a319d4 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -656,12 +656,12 @@ if(BUILD_GEOMSERVER) TARGET_LINK_LIBRARIES(IfcGeomServer ${IFCOPENSHELL_LIBRARIES} ${OPENCASCADE_LIBRARIES} ${Boost_LIBRARIES} ${ICU_LIBRARIES}) if ((NOT WIN32) AND BUILD_SHARED_LIBS) SET_INSTALL_RPATHS(IfcGeomServer "${IFCOPENSHELL_LIBARY_DIR};${OCC_LIBRARY_DIR};${Boost_LIBRARY_DIRS};${ICU_LIBRARY_DIR}") + endif() INSTALL(TARGETS IfcGeomServer ARCHIVE DESTINATION ${LIBDIR} LIBRARY DESTINATION ${LIBDIR} RUNTIME DESTINATION ${BINDIR} ) - endif() endif() IF(BUILD_IFCPYTHON)