diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 19:30:02 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-26 19:30:02 (GMT) |
commit | ae47302529e9ee040a45ad9a8636e6116e880d0c (patch) | |
tree | f75d758cb83ae21d7c02248e75cd6a3d92457f1d /Tests/SimpleCOnly/foo.c | |
parent | 25a425ecf09fccc804758da1015f93fce724f856 (diff) | |
download | CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.zip CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.tar.gz CMake-ae47302529e9ee040a45ad9a8636e6116e880d0c.tar.bz2 |
ENH: add a SimpleCOnly test, this is needed e.g. for testing sdcc since this
doesn't support C++ and also doesn't have a printf() implementation by
default
-add a test for mingw cross compiler
Alex
Diffstat (limited to 'Tests/SimpleCOnly/foo.c')
-rw-r--r-- | Tests/SimpleCOnly/foo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/SimpleCOnly/foo.c b/Tests/SimpleCOnly/foo.c new file mode 100644 index 0000000..b8cdea4 --- /dev/null +++ b/Tests/SimpleCOnly/foo.c @@ -0,0 +1 @@ +int foo() { return 12;} |