forked from OpenDroneMap/ODM
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added lidar2dems superbuild module, modified dockerfile, configure.sh…
… to install lidar2dems deps
- Loading branch information
Showing
8 changed files
with
31 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "modules/lidar2dems"] | ||
path = modules/lidar2dems | ||
url = https://github.com/pierotofy/lidar2dems | ||
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 |
---|---|---|
|
@@ -114,6 +114,7 @@ set(custom_libs OpenGV | |
Ecto | ||
PDAL | ||
MvsTexturing | ||
Lidar2dems | ||
) | ||
|
||
# Dependencies of the SLAM module | ||
|
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,25 @@ | ||
set(_proj_name lidar2dems) | ||
set(_SB_BINARY_DIR "${SB_BINARY_DIR}/${_proj_name}") | ||
|
||
ExternalProject_Add(${_proj_name} | ||
PREFIX ${_SB_BINARY_DIR} | ||
TMP_DIR ${_SB_BINARY_DIR}/tmp | ||
STAMP_DIR ${_SB_BINARY_DIR}/stamp | ||
#--Download step-------------- | ||
DOWNLOAD_DIR ${SB_DOWNLOAD_DIR}/${_proj_name} | ||
URL https://github.com/pierotofy/lidar2dems/archive/master.zip | ||
URL_MD5 6cfe2d081cda1680e6e98a9925651b03 | ||
#--Update/Patch step---------- | ||
UPDATE_COMMAND "" | ||
#--Configure step------------- | ||
SOURCE_DIR ${SB_SOURCE_DIR}/${_proj_name} | ||
CONFIGURE_COMMAND "" | ||
#--Build step----------------- | ||
BUILD_COMMAND "" | ||
#--Install step--------------- | ||
INSTALL_COMMAND "${SB_SOURCE_DIR}/${_proj_name}/install.sh" | ||
#--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
Submodule lidar2dems
deleted from
fe0710
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