8 lines
184 B
CMake
8 lines
184 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(PackageTest CXX)
|
|
|
|
find_package(mypkg CONFIG REQUIRED)
|
|
|
|
add_executable(example src/example.cpp)
|
|
target_link_libraries(example mypkg::mypkg)
|