
Add option `CMAKE_AIX_SHARED_LIBRARY_ARCHIVE`. There will no versions for the shared objects when this option is used. Closes: #26033
11 lines
170 B
C
11 lines
170 B
C
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
# define EXPORT __declspec(dllexport)
|
|
#else
|
|
# define EXPORT
|
|
#endif
|
|
|
|
EXPORT int testSharedLibArchiveAIX(void)
|
|
{
|
|
return 0;
|
|
}
|