mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
309 B
CMake
12 lines
309 B
CMake
# A CMake script to find SetEnv.cmd.
|
|
|
|
find_program(
|
|
WINSDK_SETENV
|
|
NAMES SetEnv.cmd
|
|
PATHS
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SDKs\\Windows;CurrentInstallFolder]/bin"
|
|
)
|
|
if (WINSDK_SETENV AND PRINT_PATH)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E echo "${WINSDK_SETENV}")
|
|
endif ()
|