mirror of
https://github.com/jarro2783/cxxopts.git
synced 2026-01-18 01:11:24 +01:00
9 lines
205 B
CMake
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)
|