equal
deleted
inserted
replaced
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 } else { |
22 |
23 # If defFilePath is not defined, then put the folders containing the DEF files at the |
23 MMP_RULES += defBlock |
24 # same level as the .pro (and generated MMP) file(s) |
|
25 defBlock = \ |
|
26 "$${LITERAL_HASH}ifdef WINSCW" \ |
|
27 "DEFFILE ./bwins/$${TARGET}.def" \ |
|
28 "$${LITERAL_HASH}elif defined EABI" \ |
|
29 "DEFFILE ./eabi/$${TARGET}.def" \ |
|
30 "$${LITERAL_HASH}endif" |
|
31 } |
24 } |
32 MMP_RULES += defBlock |
25 |
33 } |
26 } |
34 } |
27 } |
|
28 |