-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
57 additions
and
15 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[Package] | ||
name: "csfml" | ||
version: "0.1.0" | ||
version: "2.1.0" | ||
author: "Oleh Prypin" | ||
description: "Bindings for Simple and Fast Multimedia Library (through CSFML)" | ||
license: "zlib" | ||
srcDir: "src" | ||
[Deps] | ||
requires: "nimrod > 0.10" | ||
requires: "nim >= 0.10.1" |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Run *generate.sh* on Linux to (re)create <em>[src](../src)/csfml\_*\_gen.nim</em> source files based on CSFML's header files. | ||
|
||
This automatic generator expects the header files to be in */usr/include/SFML*. It requires [Python][] 3.x and [pycparser][]. | ||
This automatic generator expects the header files to be in */usr/include/SFML*. It requires [Python][] 3.3+ and [pycparser][]. | ||
|
||
The generator's code is very messy... | ||
The generator's code is very messy, and there some specific replacements that make the word "automatic" a bit dishonest. Still, it should allow transitioning to new CSFML versions with little to no intervention. | ||
|
||
|
||
|
||
[python]: http://python.org | ||
[pycparser]: https://pypi.python.org/pypi/pycparser | ||
[pycparser]: https://pypi.python.org/pypi/pycparser |