mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-01 13:13:53 +00:00
9 lines
206 B
CMake
9 lines
206 B
CMake
add_executable(try try.cpp)
|
|
target_link_libraries(try PUBLIC CLI)
|
|
|
|
add_executable(try1 try1.cpp)
|
|
target_link_libraries(try1 PUBLIC CLI)
|
|
|
|
add_executable(try2 try2.cpp)
|
|
target_link_libraries(try2 PUBLIC CLI)
|