CMake/Tests/ExportImport/Export/testSharedLibArchiveAIX.c
Aditya Vidyadhar Kamath d27fe9dfba AIX: Add option to archive shared libraries
Add option `CMAKE_AIX_SHARED_LIBRARY_ARCHIVE`.

There will no versions for the shared objects when this option is used.

Closes: #26033
2024-07-17 11:52:09 -04:00

11 lines
170 B
C

#if defined(_WIN32) || defined(__CYGWIN__)
# define EXPORT __declspec(dllexport)
#else
# define EXPORT
#endif
EXPORT int testSharedLibArchiveAIX(void)
{
return 0;
}