early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,29 @@
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}/tools/directx-dxc/dxc.exe")
if (EXISTS "${_dxc_exe}")
add_library(Microsoft::DirectXShaderCompiler SHARED IMPORTED)
set_target_properties(Microsoft::DirectXShaderCompiler PROPERTIES
IMPORTED_LOCATION_RELEASE "${_dxc_root}/bin/dxcompiler.dll"
IMPORTED_LOCATION_DEBUG "${_dxc_root}/bin/dxcompiler.dll"
IMPORTED_IMPLIB_RELEASE "${_dxc_root}/lib/dxcompiler.lib"
IMPORTED_IMPLIB_DEBUG "${_dxc_root}/lib/dxcompiler.lib"
INTERFACE_INCLUDE_DIRECTORIES "${_dxc_root}/include"
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)