source: tspsg/tspsg.pro @ 4c96f94558

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
13TEMPLATE = app
14TARGET = tspsg
15DEPENDPATH += .
16INCLUDEPATH += .
17
18CONFIG(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.
51MOC_DIR = ./tmp
52RCC_DIR = ./tmp
53UI_DIR = ./tmp
54
55#Include file(s)
56include(tspsg.pri)
57
58# For wince: we are deploying to storage card because Qt libraries
59# (especially debug) are big enough for internal memory.
60deploy.path = "\Storage Card\tspsg"
61i18n.sources = i18n\languages.ini i18n\*.qm
62i18n.path = "\Storage Card\tspsg\i18n"
63DEPLOYMENT += deploy i18n
64
65#Windows resource file
66win32:RC_FILE = resources/tspsg.rc
Note: See TracBrowser for help on using the repository browser.