mirror of
https://github.com/reactos/CMake.git
synced 2024-12-02 00:26:18 +00:00
7ac7b437b8
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.
11 lines
115 B
C++
11 lines
115 B
C++
|
|
#include "module.h"
|
|
#include "stdio.h"
|
|
#include "shared2.h"
|
|
|
|
void module()
|
|
{
|
|
printf("module\n");
|
|
shared2();
|
|
}
|