mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-06 07:40:53 +00:00
ENH: Add extra test files
This commit is contained in:
4
Tests/SubDir/AnotherSubdir/secondone.c
Normal file
4
Tests/SubDir/AnotherSubdir/secondone.c
Normal file
@@ -0,0 +1,4 @@
|
||||
const char* secondone()
|
||||
{
|
||||
return "Hello again";
|
||||
}
|
||||
10
Tests/SubDir/AnotherSubdir/testfromsubdir.c
Normal file
10
Tests/SubDir/AnotherSubdir/testfromsubdir.c
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
const char* secondone();
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("Hello from subdirectory\n");
|
||||
printf("SO: %s\n", secondone());
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user