Changes between Version 8 and Version 9 of PyOtherSideForAndroid


Ignore:
Timestamp:
Sep 23, 2014, 10:27:18 PM (10 years ago)
Author:
Martin Kolman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PyOtherSideForAndroid

    v8 v9  
    4747
    4848In the next step we need to tell the project to use the Android compiled libraries instead of the system ones, so edit the ''src/src.pro'' file and replace the line reading:
     49{{{
     50INCLUDEPATH += .
     51}}}
     52With this:
     53{{{
     54INCLUDEPATH += $$PWD/../libs/python32/build_dependencies/ .
     55LIBS += -L$$PWD/../libs/python32 -lpython3.2 -ldl
     56}}}
    4957
     58Then in ''tests/tests.pro'' replace:
    5059{{{
    5160INCLUDEPATH += . ../src
    5261}}}
    5362
    54 With this:
     63With:
    5564
    5665{{{