UDPConnection/test_package/CMakeLists.txt
Stephen Seo 4d0e439c0e
Some checks failed
Run UnitTests / build-and-run-tests (push) Failing after 3s
Add conan related files and adapt CMakeLists.txt
This is put in a new "conan" branch. Changes to the conan build process
will only occur on this branch.
2024-07-12 16:40:57 +09:00

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)