Menu

[r552]: / src / softProjector.pro  Maximize  Restore  History

Download this file

143 lines (105 with data), 3.2 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
##**************************************************************************
##
## softProjector - an open source media projection software
## Copyright (C) 2011 Vladislav Kobzar, Matvey Adzhigirey and Ilya Spivakov
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation version 3 of the License.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http:##www.gnu.org/licenses/>.
##
##**************************************************************************
QT += sql
TARGET = softProjector
TEMPLATE = app
//CONFIG += x86 ppc x86_64 ppc64 # Compile a universal build
RES_DIR = $${PWD}/unknownsys_bild
win32: RES_DIR = $${PWD}/win32_bild
unix: RES_DIR = $${PWD}/unix_bild
macx: RES_DIR = $${PWD}/mac_bild
DESTDIR = $${RES_DIR}/bin
OBJECTS_DIR = $${RES_DIR}/obj
MOC_DIR = $${RES_DIR}/moc
UI_DIR = $${RES_DIR}/ui
RCC_DIR = $${RES_DIR}/rcc
OUT_PWD = $${RES_DIR}/bin
SOURCES += main.cpp \
softprojector.cpp \
songwidget.cpp \
biblewidget.cpp \
editwidget.cpp \
song.cpp \
display1.cpp \
bible.cpp \
settingsdialog.cpp \
aboutdialog.cpp \
addsongbookdialog.cpp \
highlight.cpp \
managedatadialog.cpp \
managedata.cpp \
announcewidget.cpp \
helpdialog.cpp \
songcounter.cpp \
bibleinformationdialog.cpp \
settings.cpp \
generalsettingwidget.cpp \
biblesettingwidget.cpp \
songsettingwidget.cpp \
announcementsettingwidget.cpp \
printpreviewdialog.cpp
HEADERS += softprojector.h \
songwidget.h \
biblewidget.h \
editwidget.h \
song.h \
display1.h \
bible.h \
settingsdialog.h \
aboutdialog.h \
addsongbookdialog.h \
highlight.h \
managedatadialog.h \
managedata.h \
announcewidget.h \
helpdialog.h \
songcounter.h \
bibleinformationdialog.h \
settings.h \
generalsettingwidget.h \
biblesettingwidget.h \
songsettingwidget.h \
announcementsettingwidget.h \
printpreviewdialog.h
FORMS += softprojector.ui \
songwidget.ui \
biblewidget.ui \
editwidget.ui \
settingsdialog.ui \
aboutdialog.ui \
addsongbookdialog.ui \
managedatadialog.ui \
announcewidget.ui \
helpdialog.ui \
songcounter.ui \
bibleinformationdialog.ui \
generalsettingwidget.ui \
biblesettingwidget.ui \
songsettingwidget.ui \
announcementsettingwidget.ui \
printpreviewdialog.ui
TRANSLATIONS += softpro_de.ts\
softpro_ru.ts\
softpro_cs.ts\
softpro_ua.ts
CODECFORTR = UTF-8
RESOURCES += softprojector.qrc
win32 {
RC_FILE = softprojector.rc
}