]> sigrok.org Git - pulseview.git/blobdiff - sigrok-qt2.pro
Created a CMake build environment
[pulseview.git] / sigrok-qt2.pro
diff --git a/sigrok-qt2.pro b/sigrok-qt2.pro
deleted file mode 100644 (file)
index 7993c93..0000000
+++ /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)
-}