source: tspsg-svn/trunk/tspsg.pri @ 87

Last change on this file since 87 was 87, checked in by laleppa, 14 years ago

+ Added Fractional accuracy (in decimail places) to settings.
+ Created defaults.h file. Moved all default defines there.

  • Replaced all double types with qreal.
  • Replaced all calls to trUtf8() with tr() as we use setCodecForTr() to set UTF-8 encoding as default and tr() is enough.
  • Replaced all 2009 with 2010 in copyrights.
  • Fixed an error when loading .zkt file with less than 5 cities.
  • Property svn:keywords set to Id URL
File size: 848 bytes
Line 
1######################################################################
2#
3# TSPSG: TSP Solver and Generator
4# Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
5#
6# $Id: tspsg.pri 87 2010-01-12 14:11:24Z laleppa $
7# $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/tspsg.pri $
8#
9# This file is part of TSPSG.
10#
11######################################################################
12
13#Header files
14HEADERS += src/globals.h \
15        src/version.h \
16        src/os.h \
17        src/defaults.h \
18        src/mainwindow.h \
19        src/settingsdialog.h \
20        src/tspmodel.h \
21        src/tspsolver.h \
22        src/resource.h
23
24#Source files
25SOURCES += src/main.cpp \
26        src/mainwindow.cpp \
27        src/settingsdialog.cpp \
28        src/tspmodel.cpp \
29        src/tspsolver.cpp
30
31#Forms
32FORMS += ui/mainwindow.ui \
33        ui/settingsdialog.ui
34
35#Resource file(s)
36RESOURCES += resources/tspsg.qrc
37
38#Translations
39CODECFORTR = UTF-8
40TRANSLATIONS += i18n/en.ts \
41        i18n/ru.ts \
42        i18n/uk.ts
Note: See TracBrowser for help on using the repository browser.