aboutsummaryrefslogtreecommitdiff
path: root/ports/cppwinrt/portfile.cmake
blob: a875a5a5e84b8486f2f0355e1b3f983999c29a0b (plain)
1
2
3
4
5
6
7
8
9
10
find_path(CPPWINRT_BASE_H
    NAMES winrt/base.h
    PATHS $ENV{INCLUDE}
)

if(NOT CPPWINRT_BASE_H)
    message(FATAL_ERROR "Unable to locate cppwinrt. Please install Windows SDK version 10.0.17134.0 or newer.")
endif()

SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)