Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit eb04d56

Browse files
committed
fix debug postfix and packaging
1 parent 2a800f9 commit eb04d56

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ jobs:
7979
mkdir -p install/dawn
8080
cd install/dawn
8181
cp ../../DawnConfig.cmake .
82-
cp -r ../include .
82+
cp -r ../../include .
8383
mkdir lib
84-
cp ../lib/*.a lib
85-
cp ../lib/*.lib lib
84+
cp ../../lib/*.a lib
85+
cp ../../lib/*.lib lib
8686
cd ..
8787
zip -r ../dawn.zip dawn
8888

dawn/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ set(TINT_BUILD_IR_BINARY OFF CACHE INTERNAL "Build IR binary format support" FOR
3333
set(TINT_BUILD_TESTS OFF CACHE INTERNAL "Build tests" FORCE)
3434
set(TINT_ENABLE_IR_VALIDATION ON CACHE INTERNAL "Enable IR validation for backend codegen" FORCE)
3535

36-
set(CMAKE_DEBUG_POSTFIX _debug)
37-
3836
add_subdirectory(dawn)
37+
38+
set_target_properties(webgpu_dawn PROPERTIES DEBUG_POSTFIX _debug)

0 commit comments

Comments
 (0)