Files
cxxopts/test/find-package-test/CMakeLists.txt
2025-03-17 17:46:27 +11:00

9 lines
205 B
CMake

cmake_minimum_required(VERSION 3.5...3.19)
project(cxxopts-test)
find_package(cxxopts REQUIRED)
add_executable(library-test "../../src/example.cpp")
target_link_libraries(library-test cxxopts::cxxopts)