aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-hello-imgui/project/CMakeLists.txt
blob: 4d03bc682211e5df0381008cfd530bf463cb6b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.30)
project(hello-imgui-test CXX)

set(CMAKE_CXX_STANDARD 17)

find_package(hello-imgui CONFIG REQUIRED)

add_executable(main main.cpp)
target_link_libraries(main PRIVATE
    hello-imgui::hello_imgui
)