diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-29 20:58:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-29 20:58:19 (GMT) |
commit | 46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134 (patch) | |
tree | 94726fec6aee4edd9144b7f399ecc79b83450e14 /Tests/LibName/foo.c | |
parent | d6219588c049c8d7ca1b328d918e410e9385f0c8 (diff) | |
download | CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.zip CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.tar.gz CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.tar.bz2 |
BUG: fix a problem where it tried to link .dll.lib files
Diffstat (limited to 'Tests/LibName/foo.c')
-rw-r--r-- | Tests/LibName/foo.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/LibName/foo.c b/Tests/LibName/foo.c new file mode 100644 index 0000000..b068b46 --- /dev/null +++ b/Tests/LibName/foo.c @@ -0,0 +1,5 @@ +__declspec(dllimport) void foo(); +__declspec(dllexport) void bar() +{ + foo(); +} |