mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-18 22:57:51 +08:00
11 lines
234 B
CMake
11 lines
234 B
CMake
|
cmake_minimum_required(VERSION 3.7)
|
||
|
|
||
|
project(skia-example)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 17)
|
||
|
|
||
|
add_executable(main convert-to-nia.cpp)
|
||
|
|
||
|
find_package(unofficial-skia CONFIG REQUIRED)
|
||
|
target_link_libraries(main PRIVATE unofficial::skia::skia)
|