source: tspsg/tspsg.pro @ 134a9158bd

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since 134a9158bd was 134a9158bd, checked in by Oleksii Serdiuk, 15 years ago
  • Now we use Oxygen Icons under LGPL license:
    • icons are of higher quality;
    • icons are nicer;
    • icons are LGPL :-)
  • "Toolbar too smal to be usable" problem on hi-res (VGA, WVGA, ...) wince devices fixed.
  • Property mode set to 100644
File size: 1000 bytes
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
13QT += svg
14TEMPLATE = app
15TARGET = tspsg
16DEPENDPATH += .
17INCLUDEPATH += .
18
19CONFIG(release, debug|release) {
20        OBJECTS_DIR = release
21        DESTDIR = release
22} else {
23        OBJECTS_DIR = debug
24        DESTDIR = debug
25}
26
27# Saving all intermediate files to tmp directory.
28MOC_DIR = ./tmp
29RCC_DIR = ./tmp
30UI_DIR = ./tmp
31
32#Include file(s)
33include(tspsg.pri)
34
35# For wince: we are deploying to storage card because Qt libraries
36# (especially debug) are big enough for internal memory.
37deploy.path = "\Storage Card\tspsg"
38i18n.sources = i18n\languages.ini i18n\*.qm
39i18n.path = "\Storage Card\tspsg\i18n"
40DEPLOYMENT += deploy i18n
41
42#Windows resource file
43win32:RC_FILE = resources/tspsg.rc
Note: See TracBrowser for help on using the repository browser.