mkspecs/features/symbian/def_files.prf
changeset 29 b72c6db6890b
parent 19 fcece45ef507
child 30 5dc02b23752f
equal deleted inserted replaced
25:e24348a560a6 29:b72c6db6890b
    17             "$${LITERAL_HASH}ifdef WINSCW" \
    17             "$${LITERAL_HASH}ifdef WINSCW" \
    18             "DEFFILE $$defFilePath/bwins/$${TARGET}.def" \
    18             "DEFFILE $$defFilePath/bwins/$${TARGET}.def" \
    19             "$${LITERAL_HASH}elif defined EABI" \
    19             "$${LITERAL_HASH}elif defined EABI" \
    20             "DEFFILE $$defFilePath/eabi/$${TARGET}.def" \
    20             "DEFFILE $$defFilePath/eabi/$${TARGET}.def" \
    21             "$${LITERAL_HASH}endif"
    21             "$${LITERAL_HASH}endif"
    22             
       
    23             MMP_RULES += defBlock
    22             MMP_RULES += defBlock
       
    23         } else {
       
    24             # If defFilePath is not defined, then put the folders containing the DEF files at the
       
    25             # same level as the .pro (and generated MMP) file(s)
       
    26             exists("$$_PRO_FILE_PWD_/eabi") {
       
    27                defBlock = \
       
    28                "$${LITERAL_HASH}ifdef WINSCW" \
       
    29                "DEFFILE ./bwins/$${TARGET}.def" \
       
    30                "$${LITERAL_HASH}elif defined EABI" \
       
    31                "DEFFILE ./eabi/$${TARGET}.def" \
       
    32                "$${LITERAL_HASH}endif"
       
    33                MMP_RULES += defBlock
       
    34             }
    24         }
    35         }
    25         
    36        
    26     }
    37     }
    27 }
    38 }
    28 
    39