mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 00:59:19 -06:00
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.
This commit is contained in:
committed by
David Cole
parent
ba6579f7a3
commit
7ac7b437b8
10
Tests/BundleUtilities/module.cpp
Normal file
10
Tests/BundleUtilities/module.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
#include "module.h"
|
||||
#include "stdio.h"
|
||||
#include "shared2.h"
|
||||
|
||||
void module()
|
||||
{
|
||||
printf("module\n");
|
||||
shared2();
|
||||
}
|
||||
Reference in New Issue
Block a user