lash_game_map_setup.py (832B)
1 from distutils.core import setup, Extension 2 3 module1 = Extension('lashgamemap', 4 sources = ['lash_game_map_wrapper.c'], 5 libraries = ['lashgamemap', 'lashgame', 'lash'], 6 #libraries = ['lashgame', 'lash'], 7 library_dirs = ['/home/lash/programming/lib'], 8 #include_dirs = ['/home/lash/programming/src/liblashgame/'], 9 #extra_objects = [ '/home/lash/programming/src/liblashgame/lash_game_path_simple.o', 10 # '/home/lash/programming/src/liblashgame/lash_game_map.o'], 11 include_dirs = ['/home/lash/programming/include'] 12 13 ) 14 15 setup (name = 'lashgamemap', 16 version = '1.0', 17 description = 'Map and path functions', 18 ext_modules = [module1])