1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Dart / Flutter
.dart_tool/
.packages
build/
.flutter-plugins
.flutter-plugins-dependencies
# Native build output
*.so
*.dylib
*.dll
*.a
*.o
# NOTE: ios/Classes/*.gen.c and macos/Classes/*.gen.c are intentionally
# NOT ignored. Xcode cannot run `v`, so that C is checked in on purpose.
# Regenerate with tool/gen_ios_sources.sh after editing src/nimflutter.v.
# The web build's wasm, by contrast, IS ignored: unlike Xcode, anything that
# can run the build can also run emscripten, because tool/bin/emcc fetches it
# on demand. Regenerate with `just wasm`.
example/web/nimflutter.js
example/web/nimflutter.wasm
|