tqt-tray.pro - tomb - the crypto undertaker
 (HTM) git clone git://parazyd.org/tomb.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tqt-tray.pro (1198B)
       ---
            1 #  Tomb - encrypted storage undertaker
            2 #
            3 #  (c) Copyright 2015 Gianluca Montecchi <gian@grys.it>
            4 #
            5 # This source code is free software; you can redistribute it and/or
            6 # modify it under the terms of the GNU Public License as published
            7 # by the Free Software Foundation; either version 3 of the License,
            8 # or (at your option) any later version.
            9 #
           10 # This source code is distributed in the hope that it will be useful,
           11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
           12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
           13 # Please refer to the GNU Public License for more details.
           14 #
           15 # You should have received a copy of the GNU Public License along with
           16 # this source code; if not, write to:
           17 # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
           18 #/
           19 
           20 #-------------------------------------------------
           21 #
           22 # Project created by QtCreator 2015-07-30T22:53:13
           23 #
           24 #-------------------------------------------------
           25 
           26 QT       += core gui quick
           27 
           28 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
           29 
           30 TARGET = tomb-qt-tray
           31 TEMPLATE = app
           32 
           33 
           34 SOURCES += main.cpp\
           35         tomb.cpp
           36 
           37 HEADERS  += tomb.h
           38 
           39 TRANSLATIONS = i18n/tomb-qt-tray_it.ts
           40 
           41 CONFIG += c++11
           42 
           43 FORMS +=
           44 
           45 DISTFILES +=
           46 
           47