liblashgame

Pathfinder and path decision making library for 2D tile game
git clone git://holbrook.no/liblashgame.git
Log | Files | Refs

lash_game_standard_setup.py (652B)


      1 from distutils.core import setup, Extension
      2 
      3 module1 = Extension('lashgame',
      4                     sources = ['lash_game_standard_wrapper.c'],
      5                     libraries = ['lashgame'],
      6                     library_dirs = ['/home/lash/programming/lib'],
      7                     #include_dirs = ['/home/lash/programming/src/liblashgame/'],
      8                     #extra_objects = ['lash_game_standard.o']
      9                     include_dirs = ['/home/lash/programming/include']
     10                     
     11                     )
     12 
     13 setup (name = 'lashgame',
     14        version = '1.0',
     15        description = 'Standard game arithmetic functions',
     16        ext_modules = [module1])