Changeset 932

Show
Ignore:
Timestamp:
02/25/08 07:41:20 (11 months ago)
Author:
timdewhirst
Message:

jahwidgets
- hardcode python 2.5

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jahwidgets/src/qt3/python/python.pro

    r907 r932  
    99 
    1010unix:!mac { 
    11     INCLUDEPATH += /usr/include/python2.4 
     11    INCLUDEPATH += /usr/include/python2.5 
    1212    LIBS                += -lboost_python 
    1313} 
     
    1515mac { 
    1616    DEFINES += MAC_OSX 
    17     INCLUDEPATH += /usr/include/python2.4 
     17    INCLUDEPATH += /usr/include/python2.5 
    1818    LIBS += -lqui -lboost_python -framework Python -framework CoreFoundation -framework CoreServices 
    1919} 
     
    2424    INCLUDEPATH += c:/boost/include/boost-1_33_1/  
    2525    LIBS                += c:/boost/lib/boost_python-vc71-mt-gd-1_33_1.lib 
    26     LIBS                += c:/python24/libs/python24.lib 
     26    LIBS                += c:/python25/libs/python24.lib 
    2727    LIBS                += -lqui 
    2828} 
     
    3333include(../utils/utils.pri) 
    3434 
    35 SOURCES                 += wrapper.cpp \ 
    36                    widget_handle.cpp \ 
    37                    application.cpp \ 
    38                    drop_delegate.cpp \ 
    39                    key_delegate.cpp \ 
    40                    media.cpp \ 
    41                    mouse_delegate.cpp \ 
    42                    player.cpp \ 
    43                    player_delegate.cpp \ 
    44                    texture.cpp \ 
    45                    scribbler.cpp \ 
    46                    timer.cpp \ 
    47                    timer_delegate.cpp \ 
    48                    wheel_delegate.cpp \ 
    49                    geometry.cpp \ 
    50                    file_dialogs.cpp \ 
    51                    color.cpp \ 
    52                    py.cpp \ 
    53                    key_frame_control.cpp \ 
    54                    key_frame_interpolator.cpp \ 
    55                    list_view.cpp \ 
    56                    icon_view.cpp \ 
    57                    detail_view.cpp \ 
    58                    splitter.cpp \ 
    59                    action.cpp \ 
    60                    keys.cpp \ 
    61                    widget_store.cpp \ 
    62                    widget_factory.cpp \ 
    63                    dialog_delegate.cpp \ 
    64                    thumbnailer.cpp \ 
    65                    messagebox.cpp \ 
    66                    scrollview.cpp \ 
    67                    settings.cpp \ 
    68                    timeline.cpp 
     35SOURCES += \ 
     36    wrapper.cpp \ 
     37    widget_handle.cpp \ 
     38    application.cpp \ 
     39    drop_delegate.cpp \ 
     40    key_delegate.cpp \ 
     41    media.cpp \ 
     42    mouse_delegate.cpp \ 
     43    player.cpp \ 
     44    player_delegate.cpp \ 
     45    texture.cpp \ 
     46    scribbler.cpp \ 
     47    timer.cpp \ 
     48    timer_delegate.cpp \ 
     49    wheel_delegate.cpp \ 
     50    geometry.cpp \ 
     51    file_dialogs.cpp \ 
     52    color.cpp \ 
     53    py.cpp \ 
     54    key_frame_control.cpp \ 
     55    key_frame_interpolator.cpp \ 
     56    list_view.cpp \ 
     57    icon_view.cpp \ 
     58    detail_view.cpp \ 
     59    splitter.cpp \ 
     60    action.cpp \ 
     61    keys.cpp \ 
     62    widget_store.cpp \ 
     63    widget_factory.cpp \ 
     64    dialog_delegate.cpp \ 
     65    thumbnailer.cpp \ 
     66    messagebox.cpp \ 
     67    scrollview.cpp \ 
     68    settings.cpp \ 
     69    timeline.cpp 
    6970 
    70 mac: SOURCES += macutils.cpp 
     71mac: SOURCES += \ 
     72    macutils.cpp 
    7173 
    72 HEADERS                 += python.hpp 
     74HEADERS += \ 
     75    python.hpp 
    7376