forked from raylib-rs/raylib-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 888 Bytes
/
Cargo.toml
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
[package]
name = "raylib-sys"
version = "3.7.0"
authors = ["DeltaPHC <[email protected]>"]
license = "Zlib"
description = "Raw FFI bindings for Raylib"
documentation = "https://docs.rs/raylib-sys"
repository = "https://github.com/deltaphc/raylib-rs"
keywords = ["bindings", "raylib", "gamedev", "ffi"]
categories = ["external-ffi-bindings"]
edition = "2018"
exclude = [
"raylib/examples/*",
"raylib/projects/*",
"raylib/templates/*"
]
[build-dependencies]
fs_extra = "1.1"
cmake = "0.1.35"
cc = "1.0"
[features]
default = []
# Build Raylib headless for docs. Up to you to link
nobuild = []
# Build for wayland on linux. Should fix #119
wayland = []
# OpenGL stuff, intended for fixing #122
opengl_33 = []
opengl_21 = []
# opengl_11 = [] I couldn't get this one working, the others were fine in my limited testing (unsure about wayland compatibility)
opengl_es_20 = []