mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-30 04:33:53 +00:00
add tests that exercise the CMake module and pkg-config files --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
8 lines
255 B
CMake
8 lines
255 B
CMake
if(CLI11_PRECOMPILED)
|
|
configure_file("cmake/CLI11precompiled.pc.in" "CLI11.pc" @ONLY)
|
|
else()
|
|
configure_file("cmake/CLI11.pc.in" "CLI11.pc" @ONLY)
|
|
endif()
|
|
|
|
install(FILES "${PROJECT_BINARY_DIR}/CLI11.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|