Skip to content

Commit eb07f03

Browse files
Merge branch 'main' into logging
2 parents 783607c + 408978a commit eb07f03

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

bin/toucan-render/App.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,18 +581,21 @@ namespace toucan
581581
void App::_printHelp()
582582
{
583583
std::cout << "Usage:" << std::endl;
584+
std::cout << std::endl;
584585
std::cout << " toucan-render (input) (output) [options...]" << std::endl;
586+
std::cout << std::endl;
585587
std::cout << " toucan-render (input) (-print_start|-print_duration|-print_rate|-print_size)" << std::endl;
586588
std::cout << std::endl;
587589
std::cout << "Arguments:" << std::endl;
590+
std::cout << std::endl;
588591
for (const auto& arg : _args.list)
589592
{
590-
std::cout << " " << arg->getName() << std::endl;
591-
std::cout << " " << arg->getHelp() << std::endl;
593+
std::cout << " " << arg->getName() << " - " << arg->getHelp() << std::endl;
592594
std::cout << std::endl;
593595
}
594596
std::cout << std::endl;
595597
std::cout << "Options:" << std::endl;
598+
std::cout << std::endl;
596599
for (const auto& option : _options.list)
597600
{
598601
for (const auto& line : option->getHelp())

cmake/SuperBuild/Builddtk-deps.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include(ExternalProject)
22

33
set(dtk_GIT_REPOSITORY "https://github.com/darbyjohnston/dtk.git")
4-
set(dtk_GIT_TAG "0dd29ed19c12702d9304c6273576117fa8648a23")
4+
set(dtk_GIT_TAG "11e0c38016c8c7b860a7bc03dbc0adec7a1f0d91")
55

66
set(dtk-deps_ARGS
77
${toucan_EXTERNAL_PROJECT_ARGS}

cmake/SuperBuild/Builddtk.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include(ExternalProject)
22

33
set(dtk_GIT_REPOSITORY "https://github.com/darbyjohnston/dtk.git")
4-
set(dtk_GIT_TAG "0dd29ed19c12702d9304c6273576117fa8648a23")
4+
set(dtk_GIT_TAG "11e0c38016c8c7b860a7bc03dbc0adec7a1f0d91")
55

66
set(dtk_DEPS dtk-deps)
77
set(dtk_ARGS

0 commit comments

Comments
 (0)