-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpubspec.yaml
59 lines (55 loc) · 1.79 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: dart_sdl
version: 0.10.1
description: Dart bindings for [SDL2](https://www.libsdl.org/).
homepage: https://github.com/chrisnorman7/dart_sdl
environment:
sdk: ">=2.17.0 <3.0.0"
dependencies:
ffi: ^2.0.1
meta: ^1.8.0
path: ^1.8.2
dev_dependencies:
dart_style: ^2.2.3
ffigen: ^6.0.0
lints: ^2.0.0
test: ^1.21.4
ffigen:
output: "lib/src/sdl_bindings.dart"
name: "DartSdl"
description: "Bindings for SDL"
headers:
entry-points:
- "SDL2-2.0.20/include/SDL.h"
- "SDL2-2.0.20/include/SDL_hints.h"
- "SDL2-2.0.20/include/SDL_error.h"
- "SDL2-2.0.20/include/SDL_log.h"
- "SDL2-2.0.20/include/SDL_assert.h"
- "SDL2-2.0.20/include/SDL_version.h"
- "SDL2-2.0.20/include/SDL_revision.h"
- "SDL2-2.0.20/include/SDL_video.h"
- "SDL2-2.0.20/include/SDL_clipboard.h"
- "SDL2-2.0.20/include/SDL_events.h"
- "SDL2-2.0.20/include/SDL_keyboard.h"
- "SDL2-2.0.20/include/SDL_keycode.h"
- "SDL2-2.0.20/include/SDL_scancode.h"
- "SDL2-2.0.20/include/SDL_haptic.h"
- "SDL2-2.0.20/include/SDL_joystick.h"
- "SDL2-2.0.20/include/SDL_sensor.h"
- "SDL2-2.0.20/include/SDL_audio.h"
- "SDL2-2.0.20/include/SDL_thread.h"
- "SDL2-2.0.20/include/SDL_mutex.h"
- "SDL2-2.0.20/include/SDL_atomic.h"
- "SDL2-2.0.20/include/SDL_timer.h"
- "SDL2-2.0.20/include/SDL_filesystem.h"
- "SDL2-2.0.20/include/SDL_rwops.h"
- "SDL2-2.0.20/include/SDL_loadso.h"
- "SDL2-2.0.20/include/SDL_platform.h"
- "SDL2-2.0.20/include/SDL_cpuinfo.h"
- "SDL2-2.0.20/include/SDL_endian.h"
- "SDL2-2.0.20/include/SDL_bits.h"
- "SDL2-2.0.20/include/SDL_power.h"
- "SDL2-2.0.20/include/SDL_system.h"
- "SDL2-2.0.20/include/SDL_stdinc.h"
functions:
include:
- "SDL_.*"