You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm excited to announce that my C++ CLI library is now available on Conan! This is thanks to the great contributions of @rob-baily.
With this release, you can now use Conan to manage dependencies in your applications that use CLI. This makes it easier and more efficient to develop and deploy CLI-based applications.
To get started, simply add the following to your conanfile.txt:
[requires]
cli/2.1.0
Then, you can use CLI in your CMakeLists.txt as shown below:
cmake_minimum_required(VERSION 3.15)
project(cli_example VERSION 1.0 LANGUAGES CXX)
find_package(cli REQUIRED)
add_executable(${PROJECT_NAME} cli_example.cpp)
target_link_libraries(${PROJECT_NAME} cli::cli)
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_17)
set_target_properties(${PROJECT_NAME} PROPERTIES
CXX_STANDARD 17
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS NO)
For more information, please see the CLI library documentation.
I hope you find this library useful! Please let me know if you have any questions or feedback.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm excited to announce that my C++ CLI library is now available on Conan! This is thanks to the great contributions of @rob-baily.
With this release, you can now use Conan to manage dependencies in your applications that use CLI. This makes it easier and more efficient to develop and deploy CLI-based applications.
To get started, simply add the following to your conanfile.txt:
Then, you can use CLI in your CMakeLists.txt as shown below:
For more information, please see the CLI library documentation.
I hope you find this library useful! Please let me know if you have any questions or feedback.
Beta Was this translation helpful? Give feedback.
All reactions