We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature request: add CMake option to disable install
I expect something like
option(ARGPARSE_INSTALL ON) # or OFF
And
if (ARGPARSE_INSTALL) install(TARGETS argparse EXPORT argparseConfig) install(EXPORT argparseConfig NAMESPACE argparse:: DESTINATION ${CMAKE_INSTALL_LIBDIR_ARCHIND}/cmake/${PROJECT_NAME}) install(FILES ${CMAKE_CURRENT_LIST_DIR}/include/argparse/argparse.hpp DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/argparse) #... endif()
The text was updated successfully, but these errors were encountered:
I found out that it has actually been implemented, but it hasn't been released yet. (currently using v2.9)
Sorry, something went wrong.
No branches or pull requests
feature request: add CMake option to disable install
I expect something like
And
The text was updated successfully, but these errors were encountered: