SFML playground
2ac7653608
The modules provided are: - sfml-system - sfml-graphics - sfml-window - sfml-audio - sfml-network - sfml-all (depends on all the above modules) They are installed to ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/ which is the standard location for pkg-config files on Linux. An example use if using autotools: # configure.ac AC_INIT([sfml-example],[1.0],[example@example.com]) AM_INIT_AUTOMAKE([foreign]) AC_PROG_CXX PKG_CHECK_MODULES([sfml], [sfml-all >= 2.0.0], [], [AC_MSG_ERROR([SFML is required])]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT # Makefile.am bin_PROGRAMS = sfml_example sfml_example_SOURCES = src/sfml_example.cpp sfml_example_CFLAGS = $(sfml_CFLAGS) sfml_example_LIBS = $(sfml_LIBS) An example if using hand-written Makefiles: # Makefile sfml-example: src/sfml-example.cpp g++ `pkg-config --cflags --libs sfml-all` -o $@ $^ |
||
---|---|---|
cmake | ||
doc | ||
examples | ||
extlibs | ||
include/SFML | ||
src/SFML | ||
tools | ||
CMakeLists.txt | ||
license.txt | ||
readme.txt |
SFML - Simple and Fast Multimedia Library ========================================= SFML is a simple, fast, cross-platform and object-oriented multimedia API. It provides access to windowing, graphics, audio and network. It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python. Authors ------- Laurent Gomila - main developer (laurent.gom@gmail.com) Marco Antognini - OS X developer (antognini.marco@gmail.com) Download -------- You can get the latest official release on SFML website (http://www.sfml-dev.org/download.php). You can also get the current development version from the git repository (https://github.com/LaurentGomila/SFML). Install ------- Follow the instructions of the tutorials (http://www.sfml-dev.org/tutorials/), there is one for each platform/compiler that SFML supports. Learn ----- There are several places to learn SFML: * The official tutorials (http://www.sfml-dev.org/tutorials/) * The online API documentation (http://www.sfml-dev.org/documentation/) * The community wiki (https://github.com/LaurentGomila/SFML/wiki/) * The community forum (http://www.sfml-dev.org/forum/) Contribute ---------- SFML is an open-source project, and it needs your help to go on growing and improving. Don't hesitate to post suggestions or bug reports on the forum (http://www.sfml-dev.org/forum/), submit patches by e-mail, or post new bugs/features requests on the task tracker (https://github.com/LaurentGomila/SFML/issues/). You can even fork the project on github, maintain your own version and send us pull requests periodically to merge your work.