aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-ryu/CMakeLists.txt
blob: c69040d5112f32d2daae8643c4e568a32ae0ca60 (plain)
1
2
3
4
5
6
cmake_minimum_required(VERSION 3.30)
project(vcpkg-ci-ryu LANGUAGES C)
find_package(ryu CONFIG REQUIRED)
add_executable(test test.c)
target_link_libraries(test PUBLIC RYU::ryu RYU::ryu_printf)
install(TARGETS test RUNTIME DESTINATION bin/vcpkg-ci-ryu)