mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-30 04:33:53 +00:00
9 lines
251 B
CMake
9 lines
251 B
CMake
add_executable(try try.cpp ${CLI_headers})
|
|
target_link_libraries(try PUBLIC CLI)
|
|
|
|
add_executable(try1 try1.cpp ${CLI_headers})
|
|
target_link_libraries(try1 PUBLIC CLI)
|
|
|
|
add_executable(try2 try2.cpp ${CLI_headers})
|
|
target_link_libraries(try2 PUBLIC CLI)
|