mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:28:59 +08:00
f3bc121a2a
* [arg-router] Update to v1.2.2 Bug fixes * Issue 284, specify Boost as a dependency in the config file * Issue 274, CMake package should detect Boost headers itself Improvements * CMake package exported target should be namespaced (Issue 275) * Improve CMake package config files installation (Issue 276) * Reverted unrelated baseline change
9 lines
279 B
Plaintext
9 lines
279 B
Plaintext
The package arg-router is a header-only library and so is typically used like this:
|
|
|
|
find_package(arg_router REQUIRED)
|
|
target_link_libraries(my_exe PUBLIC arg_router::arg_router)
|
|
|
|
For more information, see the docs here:
|
|
|
|
https://github.com/cmannett85/arg_router
|