0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change
on this file since 4c96f94558 was
4c96f94558,
checked in by Oleksii Serdiuk, 15 years ago
|
Some project file tweaks...
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | ###################################################################### |
---|
2 | # |
---|
3 | # TSPSG - TSP Solver and Generator |
---|
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 | TEMPLATE = app |
---|
14 | TARGET = tspsg |
---|
15 | DEPENDPATH += . |
---|
16 | INCLUDEPATH += . |
---|
17 | |
---|
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 | |
---|
50 | # Saving all intermediate files to tmp directory. |
---|
51 | MOC_DIR = ./tmp |
---|
52 | RCC_DIR = ./tmp |
---|
53 | UI_DIR = ./tmp |
---|
54 | |
---|
55 | #Include file(s) |
---|
56 | include(tspsg.pri) |
---|
57 | |
---|
58 | # For wince: we are deploying to storage card because Qt libraries |
---|
59 | # (especially debug) are big enough for internal memory. |
---|
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 |
---|
64 | |
---|
65 | #Windows resource file |
---|
66 | win32:RC_FILE = resources/tspsg.rc |
---|
Note: See
TracBrowser
for help on using the repository browser.