mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 15:39:00 +08:00
11 lines
273 B
CMake
11 lines
273 B
CMake
find_path(ATLBASE_H
|
|
NAMES atlbase.h
|
|
PATHS $ENV{INCLUDE}
|
|
)
|
|
|
|
if(NOT ATLBASE_H)
|
|
message(FATAL_ERROR "Unable to locate 'atlbase.h'. Ensure you have installed the Active Template Library (ATL) component of Visual Studio.")
|
|
endif()
|
|
|
|
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|