diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2013-07-16 04:23:12 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2013-07-16 04:39:08 (GMT) |
commit | e645ff0b10567e400c722dfc28c58dc4fd8d181b (patch) | |
tree | a2ba239079f137345d940c527057d4e94d1ed463 /Tests/MacRuntimePath/A/framework2.cpp | |
parent | b94e726a83b92f5b7376b97aa448107884a76685 (diff) | |
download | CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.zip CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.tar.gz CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.tar.bz2 |
OS X: Enable rpath support on Mac OS X when find_library() is used.
Diffstat (limited to 'Tests/MacRuntimePath/A/framework2.cpp')
-rw-r--r-- | Tests/MacRuntimePath/A/framework2.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/MacRuntimePath/A/framework2.cpp b/Tests/MacRuntimePath/A/framework2.cpp new file mode 100644 index 0000000..d3c2c45 --- /dev/null +++ b/Tests/MacRuntimePath/A/framework2.cpp @@ -0,0 +1,8 @@ + +#include "framework2.h" +#include "stdio.h" + +void framework2() +{ + printf("framework 2\n"); +} |