mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-11 09:39:49 -06:00
Rename the RunCMake/PackageInfo and RunCMake/CpsExportImport tests to indicate that they cover CPS generated by the install command. This opens space for similar tests that will cover CPS generation via the export command.
14 lines
149 B
C
14 lines
149 B
C
extern
|
|
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
int answer(void);
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int ask(void)
|
|
{
|
|
return answer();
|
|
}
|