diff options
author | Amitha Perera <perera@cs.rpi.edu> | 2002-05-01 18:00:21 (GMT) |
---|---|---|
committer | Amitha Perera <perera@cs.rpi.edu> | 2002-05-01 18:00:21 (GMT) |
commit | 1f8df8585ef36aa980d13a0cb6646de399bceff9 (patch) | |
tree | 3106ab0d6e942aa15c783425316235c75c790e8b /Tests/Dependency/Exec/ExecMain.c | |
parent | d53458de9ac298344a87d6703de78991d6770832 (diff) | |
download | CMake-1f8df8585ef36aa980d13a0cb6646de399bceff9.zip CMake-1f8df8585ef36aa980d13a0cb6646de399bceff9.tar.gz CMake-1f8df8585ef36aa980d13a0cb6646de399bceff9.tar.bz2 |
ENH: Add library dependency analysis.
Diffstat (limited to 'Tests/Dependency/Exec/ExecMain.c')
-rw-r--r-- | Tests/Dependency/Exec/ExecMain.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/Dependency/Exec/ExecMain.c b/Tests/Dependency/Exec/ExecMain.c new file mode 100644 index 0000000..b666a24 --- /dev/null +++ b/Tests/Dependency/Exec/ExecMain.c @@ -0,0 +1,16 @@ +#include <stdio.h> + +void NoDepBFunction(); +void NoDepCFunction(); +void FiveFunction(); + +int main( ) +{ + FiveFunction(); + NoDepBFunction(); + NoDepCFunction(); + + printf("Dependency test executable ran successfully.\n"); + + return 0; +} |