AtlatestRepositorysigil-web-client
sigil-web-client / tree / test / integration / apps / web-client-driftpackage.sgl
1
(package2
name: "web-client-drift"3
version: "0.1.0"4
sigil: "^0.18"5
entry: '(web-client-drift main)7
configs: (list8
(config9
name: 'web10
output-dir: "build/web"11
toolchain: 'zig12
target: "wasm32-wasi"13
backend: 'native14
debug?: #f15
optimize: 116
bundle?: #f17
c-flags: (with-sigil-c-flags '("-std=c99" "-D_GNU_SOURCE" "-D__SIGIL_WASM__" "-O1"))18
link-flags: '("-lc")19
features: '(web wasm)))21
dependencies: (list22
(from-path dir: "../../../.." package: "sigil-web-client")23
(from-git url: "codeberg:sigil/sigil" package: "sigil-lib" version: ">=0.18")24
(from-git url: "codeberg:sigil/sigil" package: "sigil-wasm-runtime" version: ">=0.18")25
(from-git url: "codeberg:sigil/sigil" package: "sigil-wasm-dom" version: ">=0.18"))27
tasks: (list28
(task29
name: 'build30
steps: (list31
(compile-sigil-modules sources: "src/**/*.sgl")32
(link-web-application name: "web-client-drift")))))