1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-20 19:55:10 +08:00
CMake/Tests/Dependency/Exec/ExecMain.c

19 lines
275 B
C

#include <stdio.h>
void NoDepBFunction();
void NoDepCFunction();
void SixAFunction();
void SixBFunction();
int main( )
{
SixAFunction();
SixBFunction();
NoDepBFunction();
NoDepCFunction();
printf("Dependency test executable ran successfully.\n");
return 0;
}