Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tclap update #18

Merged
merged 2 commits into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ set(CMAKE_CXX_EXTENSIONS OFF)
include(cmake/CPM.cmake)
CPMFindPackage(
NAME tclap
GITHUB_REPOSITORY ufz/tclap
VERSION 1.2.4
GIT_TAG 098dd0fe07a31618f3c2a9f8727bb01c8c5d61e2
GIT_REPOSITORY https://git.code.sf.net/p/tclap/code
VERSION 1.4.0
GIT_TAG 81b3d2a0c47895c22e9bb8c577f5ab521f76e5d2
DOWNLOAD_ONLY YES
)
if(tclap_ADDED AND NOT TARGET tclap)
Expand Down
2 changes: 1 addition & 1 deletion vtkdiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ auto parseCommandLine(int argc, char* argv[]) -> Args
cmd.add(vtk_input_b_arg);

TCLAP::ValueArg<std::string> data_array_a_arg(
"a", "first_data_array", "First data array name for comparison", true,
"a", "first_data_array", "First data array name for comparison", false,
"", "NAME");

TCLAP::ValueArg<std::string> data_array_b_arg(
Expand Down
Loading