Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open source dxil.dll #6770

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(DXC_PROJECTS_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(DXC_PROJECTS_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})

if(WIN32 AND HLSL_BUILD_DXILCONV)
#if(WIN32 AND HLSL_BUILD_DXILCONV)
add_subdirectory(include/Tracing)
add_subdirectory(dxilconv)
endif (WIN32 AND HLSL_BUILD_DXILCONV)
#endif (WIN32 AND HLSL_BUILD_DXILCONV)
2 changes: 2 additions & 0 deletions tools/clang/tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ add_subdirectory(dxopt)
add_subdirectory(dxl)
add_subdirectory(dxr)
add_subdirectory(dxv)
add_subdirectory(DxilHash)
add_subdirectory(dxildll)

# These targets can currently only be built on Windows.
if (MSVC)
Expand Down
15 changes: 15 additions & 0 deletions tools/clang/tools/DxilHash/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (WIN32)
add_clang_library(DxilHash
DxilHash.cpp)
else()
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${WINTOOLS_SOURCE_ROOT}/include
${DXC_PROJECTS_SOURCE_DIR}/include
${DXC_PROJECTS_BINARY_DIR}/include
${DXILDLL_PROJECT_SOURCE_DIR}/include
${DXILDLL_PROJECT_BINARY_DIR}/include
)
add_clang_library(DxilHash
DxilHash.cpp)
endif()
Loading
Loading