diff options
author | Itay Grudev <itay+github.com@grudev.com> | 2020-02-20 15:43:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 15:43:43 +0000 |
commit | 666fd4d8e8ff8da98f8a0932b647926585a502ef (patch) | |
tree | ae23c8c1ec4cb194520425c9d3bdfa982a53007d | |
parent | Update FUNDING.yml (diff) | |
parent | Added qdep support (diff) | |
download | singleapplication-666fd4d8e8ff8da98f8a0932b647926585a502ef.tar.xz |
Merge pull request #94 from itay-grudev/qwertysam
Added support for qdep
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | SingleApplication | 1 | ||||
-rw-r--r-- | singleapplication.pri | 3 |
3 files changed, 8 insertions, 1 deletions
@@ -7,3 +7,8 @@ /examples/calculator/calculator /examples/sending_arguments/sending_arguments CMakeLists.txt.user +CMakeCache.txt +CMakeCache/* +CMakeFiles/* +Makefile +cmake_install.cmake diff --git a/SingleApplication b/SingleApplication new file mode 100644 index 0000000..8ead1a4 --- /dev/null +++ b/SingleApplication @@ -0,0 +1 @@ +#include "singleapplication.h" diff --git a/singleapplication.pri b/singleapplication.pri index 26f5c9c..ae81f59 100644 --- a/singleapplication.pri +++ b/singleapplication.pri @@ -1,7 +1,8 @@ QT += core network CONFIG += c++11 -HEADERS += $$PWD/singleapplication.h \ +HEADERS += $$PWD/SingleApplication \ + $$PWD/singleapplication.h \ $$PWD/singleapplication_p.h SOURCES += $$PWD/singleapplication.cpp \ $$PWD/singleapplication_p.cpp |