You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Used headrevs as of 2009-04-15 from svn mentioned in
http://code.google.com/p/slapstick/wiki/wcurses
What version of the product are you using? On what operating system?
Here is the start of a setup.py that will build the C extension.
########################
"""Simple (just enough to build) setup.py missing all metadata info and not
suitable for packaging (no information about Python source code)
Suggested setup.py parameters:
* build
* install
* sdist
* bdist_wininst
"""
from distutils.core import setup, Extension
#libraries=["msvcrt","kernel32"]
libraries=[]
defmacros=[
#("IMPORT_DLL_DATA",None),
#("_DLL", None),
#("_MT", None),
]
wcurses=Extension("_wcurses_c",
sources=[
'wcurses/wcurses.c',
],
include_dirs=[],
define_macros=defmacros,
libraries=libraries)
setup(
name="wcurses",
ext_modules = ([wcurses]),
)
########################
Original issue reported on code.google.com by [email protected] on 16 Apr 2009 at 12:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Apr 2009 at 12:14The text was updated successfully, but these errors were encountered: