beremiz
Clone
Summary
Browse
Changes
Graph
add setup.py and beremiz_postinst.py to build windows installer
2008-01-15, greg
af97c60e759c
add setup.py and beremiz_postinst.py to build windows installer
# module which import C files as strings
import os
def code(name):
filename = os.path.join(os.path.split(__file__)[0],name + ".c")
if os.path.exists(filename):
return open(filename).read()
else:
return "#error %s target not implemented !!!\n"%name