Changeset 1025


Ignore:
Timestamp:
Aug 25, 2011, 2:55:45 PM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

mkspecs/os2: Don't deal with .sym files in subdirs targets.

This could in particular break the install targets due to missing .sym files.
Happened because qmake incorrectly interpreted subdirs as if they were
dll targets in some places.

Location:
trunk/mkspecs/features/os2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/mkspecs/features/os2/default_post.prf

    r958 r1025  
     1contains(TEMPLATE, ".*app"):CONFIG += exe_or_dll
     2contains(TEMPLATE, ".*lib"):dll:CONFIG += exe_or_dll
     3
    14!CONFIG(windows):!CONFIG(console) {
    25    CONFIG(release, debug|release):CONFIG(qt):contains(QT, gui) {
  • trunk/mkspecs/features/os2/exepack.prf

    r972 r1025  
    11isEmpty(QMAKE_EXEPACK):error("'exepack' is present in CONFIG but QMAKE_EXEPACK is not defined!")
    22
    3 contains(TEMPLATE, ".*app")|dll {
     3exe_or_dll {
    44    build_pass|isEmpty(BUILDS) {
    55        CONFIG(release, debug|release) {
  • trunk/mkspecs/features/os2/highmem.prf

    r533 r1025  
    1 contains(TEMPLATE, ".*app")|dll {
     1exe_or_dll {
    22    build_pass|isEmpty(BUILDS) {
    33        QMAKE_LFLAGS += $$QMAKE_LFLAGS_HIGHMEM
  • trunk/mkspecs/features/os2/map.prf

    r954 r1025  
    1 contains(TEMPLATE, ".*app")|dll {
     1exe_or_dll {
    22    build_pass|isEmpty(BUILDS) {
    33        QMAKE_LFLAGS += $$QMAKE_LFLAGS_MAP
  • trunk/mkspecs/features/os2/sym.prf

    r1024 r1025  
    11isEmpty(QMAKE_MAPSYM):error("'sym' is present in CONFIG but QMAKE_MAPSYM is not defined!")
    22
    3 contains(TEMPLATE, ".*app")|dll {
     3exe_or_dll {
    44    build_pass|isEmpty(BUILDS) {
    55        !isEmpty(QMAKE_POST_LINK):QMAKE_POST_LINK += $$escape_expand(\\n\\t)
Note: See TracChangeset for help on using the changeset viewer.