Changeset 4c96f94558 in tspsg for tspsg.pro


Ignore:
Timestamp:
Jul 7, 2009, 6:21:57 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
690f6939a7
Parents:
9b7064d770
Message:

Some project file tweaks...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tspsg.pro

    r9b7064d770 r4c96f94558  
    1111######################################################################
    1212
    13 win32 {
    14     TEMPLATE = vcapp
    15 } else {
    16     TEMPLATE = app
    17 }
     13TEMPLATE = app
    1814TARGET = tspsg
    1915DEPENDPATH += .
    2016INCLUDEPATH += .
     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}
    2149
    2250# Saving all intermediate files to tmp directory.
     
    3058# For wince: we are deploying to storage card because Qt libraries
    3159# (especially debug) are big enough for internal memory.
    32 deploy.path = \Storage Card\tspsg
    33 DEPLOYMENT += deploy
     60deploy.path = "\Storage Card\tspsg"
     61i18n.sources = i18n\languages.ini i18n\*.qm
     62i18n.path = "\Storage Card\tspsg\i18n"
     63DEPLOYMENT += deploy i18n
    3464
    3565#Windows resource file
Note: See TracChangeset for help on using the changeset viewer.