Add LabMCT install instructions

This commit is contained in:
Philipp Swoboda
2025-02-28 15:13:21 +01:00
parent ef3942807f
commit 75dc1cc25d

View File

@@ -66,7 +66,9 @@ endif()
if(BUILD_FOR_LABMCT)
set_target_properties(qhttpengine PROPERTIES
INSTALL_RPATH "${LABMCT_RPATH}")
install(TARGETS qhttpengine LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX})
install(TARGETS qhttpengine
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX})
else()
install(TARGETS qhttpengine EXPORT qhttpengine-export
RUNTIME DESTINATION "${BIN_INSTALL_DIR}"
@@ -95,4 +97,4 @@ configure_file(qhttpengine.pc.in "${CMAKE_CURRENT_BINARY_DIR}/qhttpengine.pc" @O
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/qhttpengine.pc"
DESTINATION "${LIB_INSTALL_DIR}/pkgconfig"
)
endif()
endif()