mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 11:21:12 +08:00
6 lines
256 B
CMake
6 lines
256 B
CMake
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) |