Skip to content

Commit 3414e36

Browse files
authored
Manually define CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION (openvinotoolkit#24343)
### Details: `CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION` is supposed to be set by CMake when Windows SDK is installed in the system, but it works only for Visual Studio generators. As we use Ninja, we set this variable manually, trying to mimic the default behavior.
1 parent 853a48a commit 3414e36

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

cmake/developer_package/api_validator/api_validator.cmake

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
#
44

55
if(WIN32)
6+
# CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION is only set when
7+
# Visual Studio generators are used, but we need it
8+
# when we use Ninja as well
9+
if(NOT DEFINED CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION)
10+
if(DEFINED ENV{WindowsSDKVersion})
11+
string(REPLACE "\\" "" WINDOWS_SDK_VERSION $ENV{WindowsSDKVersion})
12+
set(CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION ${WINDOWS_SDK_VERSION})
13+
message(STATUS "Use ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION} Windows SDK version")
14+
else()
15+
message(FATAL_ERROR "WindowsSDKVersion environment variable is not set,\
16+
can't find Windows SDK version. Try to use vcvarsall.bat script")
17+
endif()
18+
endif()
19+
620
set(PROGRAMFILES_ENV "ProgramFiles\(X86\)")
721

822
# check that PROGRAMFILES_ENV is defined, because in case of cross-compilation for Windows

0 commit comments

Comments
 (0)