Merge pull request #94 from itay-grudev/qwertysam

Added support for qdep
This commit is contained in:
Itay Grudev 2020-02-20 15:43:43 +00:00 committed by GitHub
commit 666fd4d8e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

5
.gitignore vendored
View File

@ -7,3 +7,8 @@
/examples/calculator/calculator
/examples/sending_arguments/sending_arguments
CMakeLists.txt.user
CMakeCache.txt
CMakeCache/*
CMakeFiles/*
Makefile
cmake_install.cmake

1
SingleApplication Normal file
View File

@ -0,0 +1 @@
#include "singleapplication.h"

View File

@ -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