Last change
on this file since 45 was
42,
checked in by laleppa, 15 years ago
|
+ Finished solving algorithm (needs thorough testing).
+ Solution can be saved to HTML or OpenDocument? format.
+ Added VERSIONINFO resource for windows builds.
- Updated translations to have unified terminology everywhere.
NB: This will be the first public alpha build.
|
-
Property svn:keywords set to
Id URL
|
File size:
988 bytes
|
Rev | Line | |
---|
[1] | 1 | ###################################################################### |
---|
[17] | 2 | # |
---|
[42] | 3 | # TSPSG: TSP Solver and Generator |
---|
[17] | 4 | # Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
| 5 | # |
---|
| 6 | # $Id: tspsg.pro 42 2009-07-31 18:23:07Z laleppa $ |
---|
| 7 | # $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/tspsg.pro $ |
---|
| 8 | # |
---|
| 9 | # This file is part of TSPSG. |
---|
| 10 | # |
---|
[1] | 11 | ###################################################################### |
---|
| 12 | |
---|
[36] | 13 | TEMPLATE = app |
---|
[17] | 14 | TARGET = tspsg |
---|
| 15 | DEPENDPATH += . |
---|
[1] | 16 | INCLUDEPATH += . |
---|
| 17 | |
---|
[36] | 18 | CONFIG(release, debug|release) { |
---|
| 19 | OBJECTS_DIR = release |
---|
| 20 | DESTDIR = release |
---|
| 21 | } else { |
---|
| 22 | OBJECTS_DIR = debug |
---|
| 23 | DESTDIR = debug |
---|
| 24 | } |
---|
| 25 | |
---|
[20] | 26 | # Saving all intermediate files to tmp directory. |
---|
| 27 | MOC_DIR = ./tmp |
---|
| 28 | RCC_DIR = ./tmp |
---|
| 29 | UI_DIR = ./tmp |
---|
| 30 | |
---|
[17] | 31 | #Include file(s) |
---|
| 32 | include(tspsg.pri) |
---|
| 33 | |
---|
[20] | 34 | # For wince: we are deploying to storage card because Qt libraries |
---|
| 35 | # (especially debug) are big enough for internal memory. |
---|
[36] | 36 | deploy.path = "\Storage Card\tspsg" |
---|
| 37 | i18n.sources = i18n\languages.ini i18n\*.qm |
---|
| 38 | i18n.path = "\Storage Card\tspsg\i18n" |
---|
| 39 | DEPLOYMENT += deploy i18n |
---|
[20] | 40 | |
---|
[17] | 41 | #Windows resource file |
---|
| 42 | win32:RC_FILE = resources/tspsg.rc |
---|
Note: See
TracBrowser
for help on using the repository browser.