Skip to content

Commit

Permalink
chore: upgrade ultimaille and param parser versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lbinria committed Jul 8, 2024
1 parent 806ea6a commit 1afd3a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ include(FetchContent)
FetchContent_Declare(
ultimaille
GIT_REPOSITORY https://github.com/ssloy/ultimaille
# GIT_TAG v1.1.0
GIT_TAG geom
GIT_TAG v2.0.0
)
FetchContent_MakeAvailable(ultimaille)

FetchContent_Declare(
param_parser
GIT_REPOSITORY https://github.com/ultimaille/param-parser
GIT_TAG v1.0.3
GIT_TAG v1.0.4
)
FetchContent_MakeAvailable(param_parser)

Expand Down
5 changes: 5 additions & 0 deletions delete_facet_addon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ int main(int argc, char** argv) {
/* Parse program arguments */
params.init_from_args(argc, argv);

if (params.has_run_from())
std::cout << "Run from: " << params.run_from() << std::endl;
else
std::cout << "Standalone mode." << std::endl;

// Get parameters
std::string s = params["model"];
std::string filename = params["model"];
Expand Down

0 comments on commit 1afd3a7

Please sign in to comment.