source: palm/trunk/UTIL/mrungui/mrungui.pro @ 1980

Last change on this file since 1980 was 1805, checked in by maronga, 8 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 725 bytes
Line 
1#!/bin/ksh
2#------------------------------------------------------------------------------#
3# Current revisions:
4# -----------------
5#
6#
7# Former revisions:
8# -----------------
9# $Id: mrungui.pro 1805 2016-04-05 16:32:34Z suehring $
10#
11# 1804 2016-04-05 16:30:18Z maronga
12# Update for use with qt5
13#
14# 793 2011-12-12 15:15:24Z maronga
15# Initial revision
16#
17# Description:
18# ------------
19# Project file for mrungui (qmake instructions)
20#------------------------------------------------------------------------------#
21
22QT       += core gui
23
24greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
25
26TARGET = mrungui.x
27DESTDIR = ../../SCRIPTS/
28TEMPLATE = app
29
30SOURCES += main.cpp\
31        mainwindow.cpp
32
33HEADERS  += mainwindow.h
34
35FORMS    += mainwindow.ui \
36    help.ui \
37    about.ui
Note: See TracBrowser for help on using the repository browser.