mirror of
https://github.com/thp/pyotherside.git
synced 2025-02-05 08:08:23 +08:00
18 lines
392 B
Prolog
18 lines
392 B
Prolog
|
|
QT += declarative
|
|
|
|
TEMPLATE = app
|
|
TARGET = pyotherside
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
|
|
SOURCES += main.cpp
|
|
|
|
SOURCES += qpython.cpp
|
|
HEADERS += qpython.h
|
|
|
|
# Python
|
|
QMAKE_CXXFLAGS += -I/usr/include/python2.6 -I/usr/include/python2.6 -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes
|
|
QMAKE_LIBS += -L/usr/lib/python2.6/config -lpthread -ldl -lutil -lm -lpython2.6
|
|
|