diff options
Diffstat (limited to 'mkspecs/features/symbian/moc.prf')
-rw-r--r-- | mkspecs/features/symbian/moc.prf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mkspecs/features/symbian/moc.prf b/mkspecs/features/symbian/moc.prf new file mode 100644 index 0000000..089dddc --- /dev/null +++ b/mkspecs/features/symbian/moc.prf @@ -0,0 +1,16 @@ +load(moc) + +RET = $$find(MOC_DIR, "\.[a-z]") +!isEmpty(RET):{ + error("Symbian does not support directories starting with a dot. Please set MOC_DIR to a different value in your profile.") +} + +RET = $$find(RCC_DIR, "\.[a-z]") +!isEmpty(RET):{ + error("Symbian does not support directories starting with a dot. Please set RCC_DIR to a different value in your profile.") +} + +RET = $$find(OBJECTS_DIR, "\.[a-z]") +!isEmpty(RET):{ + error("Symbian does not support directories starting with a dot. Please set OBJECTS_DIR to a different value in your profile.") +} |