mkspecs/features/symbian/default_post.prf
changeset 0 1918ee327afb
child 7 f7bc934e204c
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 load(default_post)
       
     2 
       
     3 contains(TEMPLATE, ".*app") {
       
     4     contains(CONFIG, stdbinary) {
       
     5         QMAKE_LIBS +=
       
     6     } else:contains(QT, gui):contains(CONFIG,qt) {
       
     7         S60MAIN_LIBS = -leuser
       
     8         QMAKE_LIBS += -lqtmain.lib $$S60MAIN_LIBS
       
     9     } else {
       
    10         QMAKE_LIBS += $$QMAKE_LIBS_QT_ENTRY
       
    11     }
       
    12 }
       
    13 contains(TEMPLATE, lib): {
       
    14     contains(CONFIG, staticlib)|contains(CONFIG, static): {
       
    15         # Static libs should not have LIBRARY statements in S60
       
    16         QMAKE_LIBS =
       
    17         # Static libs do not need def files
       
    18         MMP_RULES -= EXPORTUNFROZEN
       
    19     }
       
    20     contains(CONFIG, plugin):!contains(CONFIG, stdbinary): {
       
    21         # Plugins based on normal libraries have predefined def file
       
    22         MMP_RULES -= EXPORTUNFROZEN
       
    23     }
       
    24 } else {
       
    25     # Applications don't need this
       
    26     MMP_RULES -= EXPORTUNFROZEN
       
    27 }
       
    28 
       
    29 contains(TEMPLATE, ".*app"):contains(QT, gui):contains(CONFIG,qt) {
       
    30     load(application_icon.prf)
       
    31 }