mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 17:09:01 +08:00
f14984af37
* [directx-dxc, directx-headers] updated for December 2022 releases * Add WSL support to directx-dxc * Update targets file * [directx-headers] upstream hotfix for WSL compat issue * Fix-up for WSL header placement * Update baseline * github actions code review * update baseline Co-authored-by: walbourn <chuckw_walbourn@yahoo.com>
32 lines
1.1 KiB
CMake
32 lines
1.1 KiB
CMake
|
|
get_filename_component(_dxc_root "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
get_filename_component(_dxc_root "${_dxc_root}" PATH)
|
|
get_filename_component(_dxc_root "${_dxc_root}" PATH)
|
|
|
|
set(_dxc_exe "${_dxc_root}/@tool_path@")
|
|
if (EXISTS "${_dxc_exe}")
|
|
|
|
add_library(Microsoft::DirectXShaderCompiler SHARED IMPORTED)
|
|
set_target_properties(Microsoft::DirectXShaderCompiler PROPERTIES
|
|
IMPORTED_LOCATION_RELEASE "${_dxc_root}/@dll_dir@/@dll_name@"
|
|
IMPORTED_LOCATION_DEBUG "${_dxc_root}/@dll_dir@/@dll_name@"
|
|
IMPORTED_IMPLIB_RELEASE "${_dxc_root}/lib/@lib_name@"
|
|
IMPORTED_IMPLIB_DEBUG "${_dxc_root}/lib/@lib_name@"
|
|
IMPORTED_SONAME_RELEASE "@lib_name@"
|
|
IMPORTED_SONAME_DEBUG "@lib_name@"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${_dxc_root}/include/directx-dxc"
|
|
IMPORTED_CONFIGURATIONS "Debug;Release"
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C")
|
|
|
|
set(directx-dxc_FOUND TRUE)
|
|
set(DIRECTX_DXC_TOOL ${_dxc_exe})
|
|
|
|
else()
|
|
|
|
set(directx-dxc_FOUND FALSE)
|
|
|
|
endif()
|
|
|
|
unset(_dxc_exe)
|
|
unset(_dxc_root)
|