diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-28 14:05:37 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-28 14:05:37 (GMT) |
commit | 996ac24181b8de07dce0eb5c1e200ffed9a44862 (patch) | |
tree | 8845fdb8eba0a2043e7bf6ba68f31d884ab39a16 /Tests | |
parent | f248295d5d8b3cc5d21150807885b0fc332c5d56 (diff) | |
download | CMake-996ac24181b8de07dce0eb5c1e200ffed9a44862.zip CMake-996ac24181b8de07dce0eb5c1e200ffed9a44862.tar.gz CMake-996ac24181b8de07dce0eb5c1e200ffed9a44862.tar.bz2 |
ENH: More special cases
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/SubDir/ThirdSubDir/pair_p_int.int1.c | 6 | ||||
-rw-r--r-- | Tests/SubDir/ThirdSubDir/testfromauxsubdir.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c b/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c new file mode 100644 index 0000000..95a66ee --- /dev/null +++ b/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void pair_p_stuff() +{ + printf("Placeholder for another strange file in subdirectory\n"); +} diff --git a/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c b/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c index 34b6e7a..3f6a206 100644 --- a/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c +++ b/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c @@ -9,6 +9,7 @@ int main() printf("Hello from subdirectory\n"); secondone(); pair_stuff(); + pair_p_stuff(); vcl_stuff(); return 0; } |