-
Notifications
You must be signed in to change notification settings - Fork 7
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 #7 from 3DGI/develop-api
C++ API
- Loading branch information
Showing
84 changed files
with
1,544 additions
and
706 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
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,16 @@ | ||
set(APP_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/reconstruct_api.cpp") | ||
|
||
add_executable("reconstruct_api" ${APP_SOURCES}) | ||
set_target_properties("reconstruct_api" PROPERTIES CXX_STANDARD 20) | ||
|
||
set(RECONSTRUCT_LINK_LIBS | ||
roofer-extra | ||
cmake_git_version_tracking | ||
) | ||
if(RF_USE_RERUN) | ||
list(APPEND RECONSTRUCT_LINK_LIBS rerun_sdk) | ||
endif() | ||
|
||
target_link_libraries( | ||
"reconstruct_api" | ||
PRIVATE ${RECONSTRUCT_LINK_LIBS}) |
Oops, something went wrong.