Skip to content

Commit

Permalink
Add temporary files to .gitignore
Browse files Browse the repository at this point in the history
Add pri file for easy inclusion in projects
  • Loading branch information
martonmiklos committed Jul 19, 2018
1 parent edd8e42 commit c205cd7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@
*.exe
*.out
*.app

LedIndicator
ui_*
moc_*
*.pro.user
Makefile
13 changes: 13 additions & 0 deletions LedIndicator.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#-------------------------------------------------
#
# Project created by QtCreator 2014-08-12T10:36:26
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

SOURCES += $$PWD/ledindicator.cpp

HEADERS += $$PWD/ledindicator.h
12 changes: 3 additions & 9 deletions LedIndicator.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,13 @@
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
include(LedIndicator.pri)

TARGET = LedIndicator
TEMPLATE = app


SOURCES += main.cpp\
ledindicatortest.cpp\
ledindicator.cpp

HEADERS += ledindicatortest.h\
ledindicator.h

ledindicatortest.cpp
HEADERS += ledindicatortest.h
FORMS += ledindicatortest.ui

0 comments on commit c205cd7

Please sign in to comment.