mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 19:25:27 +08:00
10 lines
245 B
CMake
10 lines
245 B
CMake
cmake_minimum_required(VERSION 3.30)
|
|
project(uwebsockets-test CXX)
|
|
|
|
find_package(unofficial-uwebsockets CONFIG REQUIRED)
|
|
|
|
add_executable(main main.cxx)
|
|
target_link_libraries(main PRIVATE
|
|
$<TARGET_NAME:unofficial::uwebsockets::uwebsockets>
|
|
)
|