X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=sigrok-qt2.pro;fp=sigrok-qt2.pro;h=0000000000000000000000000000000000000000;hp=7993c93623018f55d7b13b8eb9a0e42bec041eff;hb=df9443999c6b365c37cd254320d7dfa1aa4a815b;hpb=d7002724cbeb77486c2d5a0ccad2c2a1f14cbf36 diff --git a/sigrok-qt2.pro b/sigrok-qt2.pro deleted file mode 100644 index 7993c936..00000000 --- a/sigrok-qt2.pro +++ /dev/null @@ -1,44 +0,0 @@ -#------------------------------------------------- -# -# Project created by QtCreator 2012-05-10T21:19:20 -# -#------------------------------------------------- - -QT += core gui opengl - -TARGET = sigrok-qt2 -TEMPLATE = app - -# The sigrok-qt version number. Define APP_VERSION macro for use in the code. -VERSION = 0.1.0 -DEFINES += APP_VERSION=\\\"$$VERSION\\\" - -SOURCES += main.cpp\ - mainwindow.cpp \ - about.cpp \ - sigview.cpp - -HEADERS += mainwindow.h \ - about.h \ - sigview.h - -FORMS += mainwindow.ui \ - about.ui - -RESOURCES += sigrok-qt2.qrc - -# libsigrok and libsigrokdecode -# TODO: Check for the minimum versions of libsigrok/libsigrokdecode we need. -win32 { - # On Windows/MinGW we need to use '--libs --static'. - # We also need to strip some stray '\n' characters here. - QMAKE_CXXFLAGS += $$system(pkg-config --cflags libsigrokdecode \ - libsigrok | sed s/\n//g) - LIBS += $$system(pkg-config --libs --static libsigrokdecode \ - libsigrok | sed s/\n//g) -} else { - QMAKE_CXXFLAGS += $$system(pkg-config --cflags libsigrokdecode) - QMAKE_CXXFLAGS += $$system(pkg-config --cflags libsigrok) - LIBS += $$system(pkg-config --libs libsigrokdecode) - LIBS += $$system(pkg-config --libs libsigrok) -}