Files
CLI11/tests/find_package_tests/CMakeLists.txt
Philip Top 53608df1bd Module testing (#1255)
Address issue #1254

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
2025-11-29 05:49:25 -08:00

20 lines
500 B
CMake

cmake_minimum_required(VERSION 3.14...4.2)
project(CLI11-find-package-test)
include(CTest)
if(CLI11_DIR)
set(CMAKE_PREFIX_PATH ${CLI11_DIR})
endif()
# Test the CLI11 CMake package config
find_package(CLI11 2.0 REQUIRED)
# Test the target
add_executable(package-test ../../examples/positional_validation.cpp)
target_link_libraries(package-test CLI11::CLI11)
add_test(NAME package-test1 COMMAND package-test one)
set_property(TEST package-test1 PROPERTY PASS_REGULAR_EXPRESSION "File 1 = one")