Skip to content

Commit

Permalink
Add Fuchsia support (#626)
Browse files Browse the repository at this point in the history
Co-authored-by: Marijn Suijten <marijns95@gmail.com>
  • Loading branch information
abarth and MarijnS95 authored Apr 1, 2024
1 parent cd6e1ea commit 24c3287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ash/src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ impl Entry {

#[cfg(all(
unix,
not(any(target_os = "macos", target_os = "ios", target_os = "android"))
not(any(target_os = "macos", target_os = "ios", target_os = "android", target_os = "fuchsia"))
))]
const LIB_PATH: &str = "libvulkan.so.1";

#[cfg(target_os = "android")]
#[cfg(any(target_os = "android", target_os = "fuchsia"))]
const LIB_PATH: &str = "libvulkan.so";

#[cfg(any(target_os = "macos", target_os = "ios"))]
Expand Down

0 comments on commit 24c3287

Please sign in to comment.