-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Support Builder by switching to online Flatpak build
- Loading branch information
Showing
5 changed files
with
53 additions
and
2,830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"id" : "xyz.safeworlds.hiit.Devel", | ||
"runtime" : "org.gnome.Platform", | ||
"runtime-version" : "46", | ||
"sdk" : "org.gnome.Sdk", | ||
"sdk-extensions" : [ | ||
"org.freedesktop.Sdk.Extension.rust-stable", | ||
"org.freedesktop.Sdk.Extension.llvm16" | ||
], | ||
"command" : "hiit", | ||
"finish-args" : [ | ||
"--share=ipc", | ||
"--socket=fallback-x11", | ||
"--socket=wayland", | ||
"--socket=pulseaudio", | ||
"--device=dri", | ||
"--env=RUST_LOG=hiit=debug", | ||
"--env=G_MESSAGES_DEBUG=none", | ||
"--env=RUST_BACKTRACE=1" | ||
], | ||
"build-options" : { | ||
"append-path" : "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm16/bin", | ||
"build-args": [ | ||
"--share=network" | ||
], | ||
"prepend-ld-library-path" : "/usr/lib/sdk/llvm16/lib", | ||
"env" : { | ||
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER" : "clang", | ||
"CARGO_REGISTRIES_CRATES_IO_PROTOCOL" : "sparse", | ||
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS" : "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold", | ||
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER" : "clang", | ||
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS" : "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold" | ||
} | ||
}, | ||
"modules" : [ | ||
{ | ||
"name" : "hiit", | ||
"buildsystem" : "meson", | ||
"run-tests" : true, | ||
"config-opts" : [ | ||
"-Dprofile=development" | ||
], | ||
"sources" : [ | ||
{ | ||
"type" : "dir", | ||
"path" : "./" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.