0
|
1 |
load(moc)
|
|
2 |
|
|
3 |
RET = $$find(MOC_DIR, "(/|^)\.[^/]+/?$")
|
|
4 |
!isEmpty(RET):{
|
|
5 |
error("Symbian does not support directories starting with a dot. Please set MOC_DIR to a different value in your profile. MOC_DIR: $$MOC_DIR")
|
|
6 |
}
|
|
7 |
|
|
8 |
RET = $$find(RCC_DIR, "(/|^)\.[^/]+/?$")
|
|
9 |
!isEmpty(RET):{
|
|
10 |
error("Symbian does not support directories starting with a dot. Please set RCC_DIR to a different value in your profile. RCC_DIR: $$RCC_DIR")
|
|
11 |
}
|
|
12 |
|
|
13 |
RET = $$find(OBJECTS_DIR, "(/|^)\.[^/]+/?$")
|
|
14 |
!isEmpty(RET):{
|
|
15 |
error("Symbian does not support directories starting with a dot. Please set OBJECTS_DIR to a different value in your profile. OBJECTS_DIR: $$OBJECTS_DIR")
|
|
16 |
}
|