Commit 100db357db00d6f3fb963f4661cdb20fd7b57aef
1 parent
bfeadf87
Better example names
Showing
4 changed files
with
3 additions
and
3 deletions
examples/CMakeLists.txt
| @@ -14,6 +14,6 @@ function(add_cli_exe T) | @@ -14,6 +14,6 @@ function(add_cli_exe T) | ||
| 14 | endif() | 14 | endif() |
| 15 | endfunction() | 15 | endfunction() |
| 16 | 16 | ||
| 17 | -add_cli_exe(try try.cpp) | ||
| 18 | -add_cli_exe(try1 try1.cpp) | ||
| 19 | -add_cli_exe(try2 try2.cpp) | 17 | +add_cli_exe(simple simple.cpp) |
| 18 | +add_cli_exe(subcommands subcommands.cpp) | ||
| 19 | +add_cli_exe(groups groups.cpp) |
examples/try2.cpp renamed to examples/groups.cpp
examples/try.cpp renamed to examples/simple.cpp
examples/try1.cpp renamed to examples/subcommands.cpp