-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.69 --> mandeye_single_session_viewer
- Loading branch information
1 parent
8876729
commit 6df7259
Showing
3 changed files
with
577 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
cmake_minimum_required(VERSION 3.15.0) | ||
|
||
project(mandeye_raw_data_viewer) | ||
|
||
add_executable( | ||
mandeye_single_session_viewer | ||
mandeye_single_session_viewer.cpp | ||
../lidar_odometry_step_1/lidar_odometry_utils.cpp | ||
) | ||
|
||
target_include_directories( | ||
mandeye_single_session_viewer | ||
PRIVATE include | ||
${REPOSITORY_DIRECTORY}/core/include | ||
${REPOSITORY_DIRECTORY}/core_hd_mapping/include | ||
${EXTERNAL_LIBRARIES_DIRECTORY} | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/glm | ||
${EIGEN3_INCLUDE_DIR} | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/imgui | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/imgui/backends | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/ImGuizmo | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/glew-2.2.0/include | ||
${FREEGLUT_INCLUDE_DIR} | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/json/include | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/portable-file-dialogs-master | ||
${LASZIP_INCLUDE_DIR}/LASzip/include | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/observation_equations/codes | ||
${EXTERNAL_LIBRARIES_DIRECTORY}/Fusion/Fusion) | ||
|
||
target_link_libraries( | ||
mandeye_single_session_viewer | ||
PRIVATE Fusion | ||
${FREEGLUT_LIBRARY} | ||
${OPENGL_gl_LIBRARY} | ||
OpenGL::GLU | ||
${PLATFORM_LASZIP_LIB} | ||
${CORE_LIBRARIES} | ||
${GUI_LIBRARIES} | ||
${PLATFORM_MISCELLANEOUS_LIBS}) | ||
|
||
if(WIN32) | ||
add_custom_command( | ||
TARGET mandeye_single_session_viewer | ||
POST_BUILD | ||
COMMAND | ||
${CMAKE_COMMAND} -E copy $<TARGET_RUNTIME_DLLS:mandeye_single_session_viewer> | ||
$<TARGET_FILE_DIR:mandeye_single_session_viewer> | ||
COMMAND_EXPAND_LISTS) | ||
endif() | ||
|
||
install(TARGETS mandeye_single_session_viewer DESTINATION bin) |
Oops, something went wrong.