diff options
author | Thomas Zander <t.zander@nokia.com> | 2010-05-04 15:46:48 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2010-05-07 07:59:39 (GMT) |
commit | 175eedd991d321d0902ea0065f9b288c62958a5d (patch) | |
tree | 5a4f2ba418910a0edf9b129d4d84680a8dee115f /config.tests/symbian/simple | |
parent | fff6751d0ae61837f08874bce5ad04c4b9536894 (diff) | |
download | Qt-175eedd991d321d0902ea0065f9b288c62958a5d.zip Qt-175eedd991d321d0902ea0065f9b288c62958a5d.tar.gz Qt-175eedd991d321d0902ea0065f9b288c62958a5d.tar.bz2 |
Add configure time checks for symbian environment
Adding test for various compile time components like rcomp and the compiler
actually working should make it failing much more transparant.
Reviewed-by: Thiago
Diffstat (limited to 'config.tests/symbian/simple')
-rw-r--r-- | config.tests/symbian/simple/main.cpp | 6 | ||||
-rw-r--r-- | config.tests/symbian/simple/simple.pro | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config.tests/symbian/simple/main.cpp b/config.tests/symbian/simple/main.cpp new file mode 100644 index 0000000..41371da --- /dev/null +++ b/config.tests/symbian/simple/main.cpp @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main(int, char **) { + printf("test\n"); + return 0; +} diff --git a/config.tests/symbian/simple/simple.pro b/config.tests/symbian/simple/simple.pro new file mode 100644 index 0000000..fa086c9 --- /dev/null +++ b/config.tests/symbian/simple/simple.pro @@ -0,0 +1,4 @@ +TEMPLATE = app +QT = +SOURCES += main.cpp + |