Skip to content

Commit

Permalink
[CMakeList] install additional targets
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthou committed Aug 9, 2024
1 parent 2ccf2c8 commit 3ba1c0f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -494,11 +494,22 @@ if($ENV{ROS_VERSION} STREQUAL "1")
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/cmake
)

install(TARGETS ontoloGUI RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
install(TARGETS
ontoloGUI
ontologenius_single
ontologenius_multi
ontologenius_draw
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

install(TARGETS
ontologenius_lib
ontologenius_interface
ontologenius_compat
ontologenius_operators
ontologenius_feeder_lib
ontologenius_plugin_lib
ontologenius_ontoGraphs_lib
ontologenius_reasoner_plugin
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
Expand All @@ -525,6 +536,14 @@ if($ENV{ROS_VERSION} STREQUAL "1")
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/files
)

install(DIRECTORY configuration/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/configuration
)

install(FILES reasoners_plugins.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

elseif($ENV{ROS_VERSION} STREQUAL "2")
install(TARGETS
ontologenius_lib
Expand Down

0 comments on commit 3ba1c0f

Please sign in to comment.