Files
maszyna/betterRenderer/mashadercompiler/CMakeLists.txt
2026-02-06 16:45:35 +01:00

33 lines
1.2 KiB
CMake

cmake_minimum_required(VERSION 3.24)
set(CMAKE_CXX_STANDARD 17)
project(MaSzynaShaderCompiler)
file(GLOB_RECURSE src "src/*.cpp" "src/*.hpp")
# Confirmed to work with DXC distributed via VCPKG. Your mileage may vary
# TODO Make sure that it works as well for people who do not use VCPKG
find_package(directx-dxc CONFIG REQUIRED)
add_executable(MaSzynaShaderCompiler ${src})
target_link_libraries(MaSzynaShaderCompiler nvrhi yaml-cpp Microsoft::DirectXShaderCompiler Microsoft::DXIL)
if (WIN32)
target_link_libraries(MaSzynaShaderCompiler delayimp)
target_link_options(MaSzynaShaderCompiler PRIVATE "/DELAYLOAD:dxcompiler.dll")
endif ()
# We later pass the DXIL.dll parent directory as first argument to MaSzynaShaderCompiler so that it can sign DX12 shaders
get_target_property(dxil_dll_path Microsoft::DXIL IMPORTED_LOCATION_RELEASE)
if(NOT dxil_dll_path)
get_target_property(dxil_dll_path Microsoft::DXIL IMPORTED_LOCATION_DEBUG)
endif()
if(NOT dxil_dll_path)
message(FATAL_ERROR "DXIL.dll not found")
endif()
get_filename_component(dxil_dll_path ${dxil_dll_path} DIRECTORY)
set_target_properties(MaSzynaShaderCompiler PROPERTIES dxil_path "${dxil_dll_path}")