Files
GoldenCheetah/src/Python/SIP/Makefile.hack
Mark Liversedge db3d119f7d Python GC.athlete()
Basic proof of concept for CPP binding using SIP but with
our own type conversion (to avoid overhead of SIP lib/deploy).
Its far from perfect but will serve as a starting point.

.. needed to fixup type conversion in goldencheetah.sip to
   convert returning QString as PyUnicode

.. needed to fixup passing context when multi-threaded

.. needed to fixup Bindings.h/cpp to offer new API
2017-12-04 15:20:43 +00:00

17 lines
350 B
Makefile

#
# Run 'make' manually to regenerate the SRC files
# at some point later we will integrate into src.pro
#
SRC= sipgoldencheetahBindings.cpp sipgoldencheetahcmodule.cpp sipAPIgoldencheetah.h \
sipgoldencheetahQString.cpp sipgoldencheetahQStringRef.cpp
DEPS= goldencheetah.sip
$(SRC): $(DEPS)
sip -c . goldencheetah.sip
clean:
-rm $(SRC)