Changeset 1b0d08aa2e in tspsg
- Timestamp:
- Sep 16, 2012, 10:52:42 PM (12 years ago)
- Branches:
- appveyor, imgbot, master, readme
- Children:
- 19d4eac43b
- Parents:
- 31694c8b58
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
install.pri
r31694c8b58 r1b0d08aa2e 46 46 } 47 47 48 # For win32: everything goes to "%PROGRAMFILES%\TSPSG" and subfolders. 49 win32 { 48 wince* { 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. 50 60 isEmpty(PREFIX) { 51 61 PREFIX = "$$(PROGRAMFILES)" … … 66 76 imageformats.path = $$PREFIX/TSPSG/imageformats 67 77 INSTALLS += share imageformats 68 }69 78 70 # For wince: we are deploying to \Program Files\TSPSG.71 wince* {72 isEmpty(PREFIX) {73 PREFIX = "\\Program Files"74 }75 share.sources = $$share.files76 # l10n.sources = $$l10n.files \77 # $$[QT_INSTALL_TRANSLATIONS]/*.qm78 docs.sources = $$docs.files79 80 DEPLOYMENT += target share docs # l10n81 DEPLOYMENT_PLUGIN += qjpeg qtiff82 }83 84 # win32 and wince common85 win* {86 79 target.path = $$PREFIX/TSPSG 87 80 share.path = $$PREFIX/TSPSG -
tspsg.pro
r31694c8b58 r1b0d08aa2e 43 43 BUILD_NUMBER=$$BUILD_NUMBER 44 44 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 } 53 55 } 54 56 DESTDIR = bin
Note: See TracChangeset
for help on using the changeset viewer.