diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2011-05-26 21:16:58 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-05-27 20:11:43 (GMT) |
commit | 7ac7b437b8bfc344e0d7e451d419596ea809d439 (patch) | |
tree | e1e52805a1958a8a4ff5b09a2e341fed05660a8e /Tests/BundleUtilities/shared2.cpp | |
parent | ba6579f7a3a687a42572f683441f56cbc70ae928 (diff) | |
download | CMake-7ac7b437b8bfc344e0d7e451d419596ea809d439.zip CMake-7ac7b437b8bfc344e0d7e451d419596ea809d439.tar.gz CMake-7ac7b437b8bfc344e0d7e451d419596ea809d439.tar.bz2 |
BundleUtilities: Work w/ non .app exes on Mac (#12034)
Also add a test of BundleUtilities including an exe,
some shared libs, a plugin, and a framework-style lib.
This test presently runs (and this functionality works)
on Linux, Mac and Windows.
For now, the framework-style lib is built as a plain old
shared lib because there is another yet-unresolved issue
with local frameworks without rpaths on the Mac.
Diffstat (limited to 'Tests/BundleUtilities/shared2.cpp')
-rw-r--r-- | Tests/BundleUtilities/shared2.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/BundleUtilities/shared2.cpp b/Tests/BundleUtilities/shared2.cpp new file mode 100644 index 0000000..84af5d0 --- /dev/null +++ b/Tests/BundleUtilities/shared2.cpp @@ -0,0 +1,8 @@ + +#include "shared2.h" +#include "stdio.h" + +void shared2() +{ + printf("shared2\n"); +} |