source: tspsg/tspsg.pri @ c10297cf73

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since c10297cf73 was c10297cf73, checked in by Oleksii Serdiuk, 15 years ago
  • mainwindow.ui and mainwindow.ce.ui had differences only in printing actions and statusbar, so I merged them into one. Differences are now applied in source code. This will simplify Main Window maintenance.
  • Changed #ifndef Q_OS_WINCE to #ifndef QT_NO_PRINTER where relevant.
  • Now using method at() instead of operator [] in solving algorithm. This change dramatically decreased solution time (from 13 seconds to 10-40 milliseconds for 20 cities on my PC).
  • Increased maximum number of cities to 30. Setting more makes no sense at this moment, because generated solution output is big and inserting it to QTextEdit takes veeeeery long time.
  • Translations were updated.
  • Property mode set to 100644
File size: 857 bytes
RevLine 
[5354a01311]1######################################################################
2#
[430bd7f7e9]3# TSPSG: TSP Solver and Generator
[5354a01311]4# Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
5#
6# $Id$
7# $URL$
8#
9# This file is part of TSPSG.
10#
11######################################################################
12
13#Header files
[2b9257627c]14HEADERS += src/globals.h \
[430bd7f7e9]15        src/version.h \
[2b9257627c]16        src/os.h \
[0621172ec1]17        src/mainwindow.h \
[5354a01311]18        src/settingsdialog.h \
19        src/tspmodel.h \
20        src/tspsolver.h \
21        src/resource.h
22
23#Source files
[140912822f]24SOURCES += src/main.cpp \
[5354a01311]25        src/mainwindow.cpp \
26        src/settingsdialog.cpp \
27        src/tspmodel.cpp \
28        src/tspsolver.cpp
29
30#Forms
[c10297cf73]31FORMS += ui/mainwindow.ui \
[5354a01311]32        ui/settingsdialog.ui \
33        ui/settingsdialog.ce.ui
34
35#Resource file(s)
36RESOURCES += resources/tspsg.qrc
37
[5fce561905]38#Translations
39CODECFORTR = UTF-8
[899d1b8e15]40TRANSLATIONS += i18n/en.ts \
41        i18n/ru.ts \
42        i18n/uk.ts
Note: See TracBrowser for help on using the repository browser.