forked from OpenDroneMap/ODM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OpenDroneMap#850 from pierotofy/messfix
Replayed laz support commit
- Loading branch information
Showing
6 changed files
with
36 additions
and
9 deletions.
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 |
---|---|---|
|
@@ -124,6 +124,7 @@ set(custom_libs OpenGV | |
CMVS | ||
Catkin | ||
Ecto | ||
LASzip | ||
PDAL | ||
MvsTexturing | ||
) | ||
|
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,26 @@ | ||
set(_proj_name laszip) | ||
set(_SB_BINARY_DIR "${SB_BINARY_DIR}/${_proj_name}") | ||
|
||
ExternalProject_Add(${_proj_name} | ||
DEPENDS | ||
PREFIX ${_SB_BINARY_DIR} | ||
TMP_DIR ${_SB_BINARY_DIR}/tmp | ||
STAMP_DIR ${_SB_BINARY_DIR}/stamp | ||
#--Download step-------------- | ||
DOWNLOAD_DIR ${SB_DOWNLOAD_DIR} | ||
URL https://github.com/LASzip/LASzip/releases/download/3.2.2/laszip-src-3.2.2.tar.gz | ||
#--Update/Patch step---------- | ||
UPDATE_COMMAND "" | ||
#--Configure step------------- | ||
SOURCE_DIR ${SB_SOURCE_DIR}/${_proj_name} | ||
CMAKE_ARGS | ||
-DCMAKE_INSTALL_PREFIX:PATH=${SB_INSTALL_DIR} | ||
#--Build step----------------- | ||
BINARY_DIR ${_SB_BINARY_DIR} | ||
#--Install step--------------- | ||
INSTALL_DIR ${SB_INSTALL_DIR} | ||
#--Output logging------------- | ||
LOG_DOWNLOAD OFF | ||
LOG_CONFIGURE OFF | ||
LOG_BUILD OFF | ||
) |
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
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