diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-28 18:40:17 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-28 18:40:17 (GMT) |
commit | f9b43b9212b1ae2ba4dd9c4f609f8d5093421398 (patch) | |
tree | 3d0d7dc4ceb4f927efa927a568adc2594a58d355 /Tests/SimpleInstallS2/lib4.cxx | |
parent | d392ccaee563a7f757eae72d9b32ea258e846a7c (diff) | |
download | CMake-f9b43b9212b1ae2ba4dd9c4f609f8d5093421398.zip CMake-f9b43b9212b1ae2ba4dd9c4f609f8d5093421398.tar.gz CMake-f9b43b9212b1ae2ba4dd9c4f609f8d5093421398.tar.bz2 |
BUG: Implement installing of shared library versioning and add test for the whole thing
Diffstat (limited to 'Tests/SimpleInstallS2/lib4.cxx')
-rw-r--r-- | Tests/SimpleInstallS2/lib4.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/lib4.cxx b/Tests/SimpleInstallS2/lib4.cxx new file mode 100644 index 0000000..fbfa23a --- /dev/null +++ b/Tests/SimpleInstallS2/lib4.cxx @@ -0,0 +1,7 @@ +#include "lib4.h" + +float Lib4Func() +{ + return 4.0; +} + |