mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21 lines
729 B
Plaintext
21 lines
729 B
Plaintext
boost: LIBS += -lboost_serialization
|
|
expat: LIBS += -lexpat
|
|
expat: PKGCONFIG -= expat
|
|
cairo {
|
|
PKGCONFIG += cairo
|
|
LIBS -= $$system(pkg-config --variable=libdir cairo)/libcairo.a
|
|
}
|
|
pyside {
|
|
PKGCONFIG -= pyside
|
|
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)
|
|
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)/QtCore
|
|
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)/QtGui
|
|
INCLUDEPATH += $$system(pkg-config --variable=includedir QtGui)
|
|
LIBS += -lpyside-python2.7
|
|
}
|
|
shiboken {
|
|
PKGCONFIG -= shiboken
|
|
INCLUDEPATH += $$system(pkg-config --variable=includedir shiboken)
|
|
LIBS += -lshiboken-python2.7
|
|
}
|