Moved all bindings to the "bindings" sub-directory
Renamed the CSFML directory to c Renamed the DSFML directory to d --> bindings must now be updated to match the new organization! git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1630 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
0cc5563cac
commit
0e2297af28
417 changed files with 0 additions and 0 deletions
27
bindings/python/setup.py
Normal file
27
bindings/python/setup.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env python
|
||||
# coding=UTF-8
|
||||
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
setup(name='PySFML',
|
||||
version='1.6',
|
||||
description='Python binding for SFML (Simple and Fast Multimedia Library)',
|
||||
author='Rémi Koenig',
|
||||
author_email='remi.k2620@gmail.com',
|
||||
url='http://www.sfml-dev.org/',
|
||||
license='zlib/png',
|
||||
ext_modules=[ Extension('PySFML.sf',
|
||||
['src/Clock.cpp', 'src/Color.cpp', 'src/Drawable.cpp',
|
||||
'src/Event.cpp', 'src/Image.cpp', 'src/Input.cpp', 'src/Key.cpp', 'src/main.cpp', 'src/Music.cpp',
|
||||
'src/Shader.cpp', 'src/Rect.cpp', 'src/RenderWindow.cpp', 'src/Sleep.cpp',
|
||||
'src/Sprite.cpp', 'src/Text.cpp', 'src/VideoMode.cpp', 'src/View.cpp', 'src/Window.cpp',
|
||||
'src/Joy.cpp', 'src/Mouse.cpp', 'src/WindowStyle.cpp', 'src/Blend.cpp', 'src/Sound.cpp',
|
||||
'src/SoundBuffer.cpp', 'src/Listener.cpp', 'src/SoundRecorder.cpp', 'src/SoundBufferRecorder.cpp',
|
||||
'src/SoundStream.cpp', 'src/Font.cpp', 'src/Glyph.cpp', 'src/Shape.cpp', 'src/ContextSettings.cpp'],
|
||||
libraries=['sfml-graphics', 'sfml-window', 'sfml-audio', 'sfml-system'],
|
||||
library_dirs=['../lib/mingw'],
|
||||
include_dirs=['../include']
|
||||
)],
|
||||
package_dir = {'PySFML':'PySFML'},
|
||||
packages=['PySFML'],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue