blob: 089dddce31e7176e219ef04e21daf57c668d1877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.")
}
|