CMake/Tests/BundleUtilities/testbundleutils.cpp

30 lines
399 B
C++
Raw Normal View History

#include "framework.h"
#include "shared.h"
#include "stdio.h"
#if defined(WIN32)
#include <windows.h>
#else
#include "dlfcn.h"
#endif
int main(int, char**)
{
framework();
shared();
#if defined(WIN32)
HANDLE lib = LoadLibraryA("module.dll");
#else
void* lib = dlopen("module.so", RTLD_LAZY);
#endif
if(!lib)
{
printf("Failed to open module\n");
}
return lib == 0 ? 1 : 0;
}