mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-23 07:14:01 +00:00
e84ae4a4b2
This PR removes optional backend features in favor of run-time selection at the `request_adapter` entry point. Adapters from all supported gpu backends on the platform are reported. It also makes gfx-rs dependency to be public (for now).
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
RUST_BACKTRACE:=1
|
|
EXCLUDES:=
|
|
|
|
GENERATOR_PLATFORM:=
|
|
|
|
FFI_DIR:=ffi
|
|
BUILD_DIR:=build
|
|
CLEAN_FFI_DIR:=
|
|
CREATE_BUILD_DIR:=
|
|
|
|
WILDCARD_WGPU_NATIVE:=$(wildcard wgpu-native/**/*.rs)
|
|
WILDCARD_WGPU_NATIVE_AND_REMOTE:=$(wildcard wgpu-native/**/*.rs wgpu-remote/**/*.rs)
|
|
|
|
ifeq (,$(TARGET))
|
|
CHECK_TARGET_FLAG=
|
|
else
|
|
CHECK_TARGET_FLAG=--target $(TARGET)
|
|
endif
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
CLEAN_FFI_DIR=del $(FFI_DIR)\*.* /Q /S
|
|
CREATE_BUILD_DIR=mkdir $(BUILD_DIR)
|
|
GENERATOR_PLATFORM=-DCMAKE_GENERATOR_PLATFORM=x64
|
|
else
|
|
CLEAN_FFI_DIR=rm $(FFI_DIR)/**
|
|
CREATE_BUILD_DIR=mkdir -p $(BUILD_DIR)
|
|
endif
|
|
|
|
.PHONY: all check test doc clear lib-native lib-remote example-compute example-triangle example-remote
|
|
|
|
all: example-compute example-triangle example-remote
|
|
|
|
check:
|
|
cargo check --all
|
|
|
|
test:
|
|
cargo test --all
|
|
|
|
doc:
|
|
cargo doc --all
|
|
|
|
clear:
|
|
cargo clean
|
|
$(CLEAN_FFI_DIR)
|
|
|
|
lib-native: Cargo.lock wgpu-native/Cargo.toml $(WILDCARD_WGPU_NATIVE)
|
|
cargo build --manifest-path wgpu-native/Cargo.toml
|
|
|
|
lib-remote: Cargo.lock wgpu-remote/Cargo.toml $(WILDCARD_WGPU_NATIVE_AND_REMOTE)
|
|
cargo build --manifest-path wgpu-remote/Cargo.toml
|
|
|
|
$(FFI_DIR)/wgpu.h: wgpu-native/cbindgen.toml $(WILDCARD_WGPU_NATIVE)
|
|
rustup run nightly cbindgen -o $(FFI_DIR)/wgpu.h wgpu-native
|
|
|
|
$(FFI_DIR)/wgpu-remote.h: wgpu-remote/cbindgen.toml $(WILDCARD_WGPU_NATIVE_AND_REMOTE)
|
|
rustup run nightly cbindgen -o $(FFI_DIR)/wgpu-remote.h wgpu-remote
|
|
|
|
example-compute: lib-native $(FFI_DIR)/wgpu.h examples/compute/main.c
|
|
cd examples/compute && $(CREATE_BUILD_DIR) && cd build && cmake .. $(GENERATOR_PLATFORM) && cmake --build .
|
|
|
|
example-triangle: lib-native $(FFI_DIR)/wgpu.h examples/triangle/main.c
|
|
cd examples/triangle && $(CREATE_BUILD_DIR) && cd build && cmake .. $(GENERATOR_PLATFORM) && cmake --build .
|
|
|
|
example-remote: lib-remote $(FFI_DIR)/wgpu-remote.h examples/remote/main.c
|
|
cd examples/remote && $(CREATE_BUILD_DIR) && cd build && cmake .. && cmake --build .
|