Files
rtabmap/tools/OdometryViewer/CMakeLists.txt
matlabbe 89e3e10d89 Refactoring RTABMapConfig.cmake with targets (#904)
* Config: Using cmake targets

* fixed RTABMAP_DEPRECATED build error

* fixed melodic build

* cleanup

* Fixed qhull exported library error

* Update svg depend private

* removed g2o from public interface

* Fixed Windows with external project

* removed some required dep

* Fixed nsis error (also fixed unspecified components)

* updated workflow rules
2023-02-12 16:18:01 -08:00

16 lines
433 B
CMake

IF(MINGW)
ADD_EXECUTABLE(odometryViewer WIN32 main.cpp)
ELSE()
ADD_EXECUTABLE(odometryViewer main.cpp)
ENDIF()
TARGET_LINK_LIBRARIES(odometryViewer rtabmap_gui)
SET_TARGET_PROPERTIES( odometryViewer
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-odometryViewer)
INSTALL(TARGETS odometryViewer
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT runtime
BUNDLE DESTINATION "${CMAKE_BUNDLE_LOCATION}" COMPONENT runtime)