diff options
Diffstat (limited to 'config.tests/unix/stdint')
-rw-r--r-- | config.tests/unix/stdint/main.cpp | 8 | ||||
-rw-r--r-- | config.tests/unix/stdint/stdint.pro | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/config.tests/unix/stdint/main.cpp b/config.tests/unix/stdint/main.cpp new file mode 100644 index 0000000..91e5c3a --- /dev/null +++ b/config.tests/unix/stdint/main.cpp @@ -0,0 +1,8 @@ +/* Check for the presence of stdint.h */ +#include <stdint.h> + +int main() +{ + return 0; +} + diff --git a/config.tests/unix/stdint/stdint.pro b/config.tests/unix/stdint/stdint.pro new file mode 100644 index 0000000..79a0d9c --- /dev/null +++ b/config.tests/unix/stdint/stdint.pro @@ -0,0 +1,4 @@ +SOURCES = main.cpp +CONFIG -= x11 qt +mac:CONFIG -= app_bundle + |