Changeset 141 in tspsg-svn for trunk/install.pri


Ignore:
Timestamp:
Oct 3, 2010, 2:01:00 PM (14 years ago)
Author:
laleppa
Message:

+ Added support for Simulator from Nokia Qt SDK

  • Made some Maemo related tweaks
  • Removed ids for unsupported OSs from os.h (i.e., MSDOS, OS/2)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install.pri

    r137 r141  
    2323#   - docs go to /usr/share/doc/TSPSG-x.x.x
    2424unix:!macx:!symbian {
    25         PREFIX = /usr
     25        isEmpty(PREFIX) {
     26                PREFIX = /usr
     27        }
    2628        CONFIG(release, debug|release) {
    2729                DEFINES += PATH_L10N=\\\"$$PREFIX/share/TSPSG/l10n\\\"
     
    4648# For win32: everything goes to "%PROGRAMFILES%\TSPSG" and subfolders.
    4749win32 {
    48         PREFIX = "$$(PROGRAMFILES)"
     50        isEmpty(PREFIX) {
     51                PREFIX = "$$(PROGRAMFILES)"
     52        }
    4953
    5054        share.files = $$[QT_INSTALL_BINS]/QtCore$${D}4.dll \
     
    6872# For wince: we are deploying to \Program Files\TSPSG.
    6973wince* {
    70         PREFIX = "\\Program Files"
     74        isEmpty(PREFIX) {
     75                PREFIX = "\\Program Files"
     76        }
    7177        share.sources = $$share.files
    7278#       l10n.sources = $$l10n.files \
     
    8490#       l10n.path = $$PREFIX/TSPSG/l10n
    8591        docs.path = $$PREFIX/TSPSG
    86 
    87         RC_FILE = resources/tspsg.rc
    8892}
    8993
Note: See TracChangeset for help on using the changeset viewer.