diff options
author | Brad King <brad.king@kitware.com> | 2008-04-23 04:40:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-04-23 04:40:32 (GMT) |
commit | 464a6cbf349b563c379849cb8ca69b0c26b89552 (patch) | |
tree | 7452f3b2a562b177f8f940031232e97e1f4ae190 /Tests/Dependency/Case3/bar.c | |
parent | 85c983885b6c926e826e826c76c309cc738e1749 (diff) | |
download | CMake-464a6cbf349b563c379849cb8ca69b0c26b89552.zip CMake-464a6cbf349b563c379849cb8ca69b0c26b89552.tar.gz CMake-464a6cbf349b563c379849cb8ca69b0c26b89552.tar.bz2 |
ENH: Add test of preservation of static libraries on original link lines.
Diffstat (limited to 'Tests/Dependency/Case3/bar.c')
-rw-r--r-- | Tests/Dependency/Case3/bar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/Dependency/Case3/bar.c b/Tests/Dependency/Case3/bar.c new file mode 100644 index 0000000..62959c1 --- /dev/null +++ b/Tests/Dependency/Case3/bar.c @@ -0,0 +1,5 @@ +extern int foo1(void); +int main(void) +{ + return foo1(); +} |