Skip to content
Closed
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
3 changes: 2 additions & 1 deletion src/dawn/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,8 @@ if (DAWN_BUILD_MONOLITHIC_LIBRARY)

# Do the bundling of all the objects and dependencies together.
include(BundleLibraries)
bundle_libraries(webgpu_dawn ${DAWN_BUILD_MONOLITHIC_LIBRARY} webgpu_dawn_objects)
string(TOUPPER "${DAWN_BUILD_MONOLITHIC_LIBRARY}" BUNDLE_LINK_TYPE)
bundle_libraries(webgpu_dawn ${BUNDLE_LINK_TYPE} webgpu_dawn_objects)
add_library(dawn::webgpu_dawn ALIAS webgpu_dawn)

# Since this is a bundled library, the only dependency is the config needed to use it.
Expand Down
Loading