Changeset 1b0d08aa2e in tspsg


Ignore:
Timestamp:
Sep 16, 2012, 10:52:42 PM (12 years ago)
Author:
Oleksii Serdiuk
Branches:
appveyor, imgbot, master, readme
Children:
19d4eac43b
Parents:
31694c8b58
Message:

Some Windows Mobile specific tweaks to project file...

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • install.pri

    r31694c8b58 r1b0d08aa2e  
    4646}
    4747
    48 # For win32: everything goes to "%PROGRAMFILES%\TSPSG" and subfolders.
    49 win32 {
     48wince* {
     49    # For wince: we are deploying to %CSIDL_PROGRAM_FILES%\TSPSG.
     50    # This is automatically set by qmake when creating VS Solution file.
     51    share.sources = $$share.files
     52#       l10n.sources = $$l10n.files \
     53#               $$[QT_INSTALL_TRANSLATIONS]/*.qm
     54    docs.sources = $$docs.files
     55
     56    DEPLOYMENT += target share docs # l10n
     57    DEPLOYMENT_PLUGIN += qjpeg qtiff
     58} else:win32 {
     59    # For win32: everything goes to "%PROGRAMFILES%\TSPSG" and subfolders.
    5060    isEmpty(PREFIX) {
    5161        PREFIX = "$$(PROGRAMFILES)"
     
    6676    imageformats.path = $$PREFIX/TSPSG/imageformats
    6777    INSTALLS += share imageformats
    68 }
    6978
    70 # For wince: we are deploying to \Program Files\TSPSG.
    71 wince* {
    72     isEmpty(PREFIX) {
    73         PREFIX = "\\Program Files"
    74     }
    75     share.sources = $$share.files
    76 #       l10n.sources = $$l10n.files \
    77 #               $$[QT_INSTALL_TRANSLATIONS]/*.qm
    78     docs.sources = $$docs.files
    79 
    80     DEPLOYMENT += target share docs # l10n
    81     DEPLOYMENT_PLUGIN += qjpeg qtiff
    82 }
    83 
    84 # win32 and wince common
    85 win* {
    8679    target.path = $$PREFIX/TSPSG
    8780    share.path = $$PREFIX/TSPSG
  • tspsg.pro

    r31694c8b58 r1b0d08aa2e  
    4343    BUILD_NUMBER=$$BUILD_NUMBER
    4444
    45 CONFIG(release, debug|release) {
    46     OBJECTS_DIR = release
    47     D =
    48 } else {
    49     OBJECTS_DIR = debug
    50     DEFINES += DEBUG
    51 #       CONFIG += console
    52     D = d
     45!debug_and_release|build_pass {
     46    CONFIG(debug, debug|release) {
     47        OBJECTS_DIR = debug
     48        DEFINES += DEBUG
     49#           CONFIG += console
     50        D = d
     51    } else {
     52        OBJECTS_DIR = release
     53        D =
     54    }
    5355}
    5456DESTDIR = bin
Note: See TracChangeset for help on using the changeset viewer.