Stephen Seo
4d0e439c0e
Some checks failed
Run UnitTests / build-and-run-tests (push) Failing after 3s
This is put in a new "conan" branch. Changes to the conan build process will only occur on this branch.
7 lines
178 B
CMake
7 lines
178 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(PackageTest CXX)
|
|
|
|
find_package(udpc CONFIG REQUIRED)
|
|
|
|
add_executable(example src/test.cpp)
|
|
target_link_libraries(example udpc::udpc)
|