Files
CMake/Tests/RunCMake/CpsExportImportBuild/liba.c
Matthew Woehlke c8ccd5a9e3 export: Add build-tree CPS support
Add Common Package Specification support to export(EXPORT).
2025-02-25 15:42:23 -05:00

8 lines
77 B
C

#ifdef _WIN32
__declspec(dllexport)
#endif
int answer(void)
{
return 42;
}