Last change
on this file since 36 was
36,
checked in by laleppa, 15 years ago
|
Some project file tweaks...
|
-
Property svn:keywords set to
Id URL
|
File size:
1.4 KB
|
Rev | Line | |
---|
[1] | 1 | ###################################################################### |
---|
[17] | 2 | # |
---|
| 3 | # TSPSG - TSP Solver and Generator |
---|
| 4 | # Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
| 5 | # |
---|
| 6 | # $Id: tspsg.pro 36 2009-07-07 16:21:57Z 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 | win32 { |
---|
| 22 | OBJECTS_DIR = release/win32 |
---|
| 23 | DESTDIR = release/win32 |
---|
| 24 | } |
---|
| 25 | wince* { |
---|
| 26 | OBJECTS_DIR = release/wince |
---|
| 27 | DESTDIR = release/wince |
---|
| 28 | } |
---|
| 29 | unix { |
---|
| 30 | OBJECTS_DIR = release/nix |
---|
| 31 | DESTDIR = release/nix |
---|
| 32 | } |
---|
| 33 | } else { |
---|
| 34 | OBJECTS_DIR = debug |
---|
| 35 | DESTDIR = debug |
---|
| 36 | win32 { |
---|
| 37 | OBJECTS_DIR = debug/win32 |
---|
| 38 | DESTDIR = debug/win32 |
---|
| 39 | } |
---|
| 40 | wince* { |
---|
| 41 | OBJECTS_DIR = debug/wince |
---|
| 42 | DESTDIR = debug/wince |
---|
| 43 | } |
---|
| 44 | unix { |
---|
| 45 | OBJECTS_DIR = debug/nix |
---|
| 46 | DESTDIR = debug/nix |
---|
| 47 | } |
---|
| 48 | } |
---|
| 49 | |
---|
[20] | 50 | # Saving all intermediate files to tmp directory. |
---|
| 51 | MOC_DIR = ./tmp |
---|
| 52 | RCC_DIR = ./tmp |
---|
| 53 | UI_DIR = ./tmp |
---|
| 54 | |
---|
[17] | 55 | #Include file(s) |
---|
| 56 | include(tspsg.pri) |
---|
| 57 | |
---|
[20] | 58 | # For wince: we are deploying to storage card because Qt libraries |
---|
| 59 | # (especially debug) are big enough for internal memory. |
---|
[36] | 60 | deploy.path = "\Storage Card\tspsg" |
---|
| 61 | i18n.sources = i18n\languages.ini i18n\*.qm |
---|
| 62 | i18n.path = "\Storage Card\tspsg\i18n" |
---|
| 63 | DEPLOYMENT += deploy i18n |
---|
[20] | 64 | |
---|
[17] | 65 | #Windows resource file |
---|
| 66 | win32:RC_FILE = resources/tspsg.rc |
---|
Note: See
TracBrowser
for help on using the repository browser.