mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:09:07 +08:00
10 lines
260 B
CMake
10 lines
260 B
CMake
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) |