Show
Ignore:
Timestamp:
02/21/10 15:56:59 (2 years ago)
Author:
L. Donnie Smith <donnie.smith@…>
Parents:
1a6f4671cbdc7bd54db8046818012c5e3a20264b
git-committer:
L. Donnie Smith <donnie.smith@gatech.edu> / 2010-02-21T10:56:59Z-0500
Message:

Fix python module linking

Location:
python
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • python/Makefile.in

    r6af6786 rfadf11e  
    88 
    99all: 
    10         $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid -lcwiid -lbluetooth 
     10        $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid 
    1111 
    1212install: 
  • python/setup.py

    r49e0132 rfadf11e  
    33setup(name='cwiid', 
    44        version='0.6.00', 
    5         ext_modules=[Extension('cwiid', ['cwiidmodule.c', 'Wiimote.c'])] 
     5        ext_modules=[Extension('cwiid', ['cwiidmodule.c', 'Wiimote.c'], libraries=['cwiid', 'bluetooth'])] 
    66        )