mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 06:40:48 -06:00
Run the tests only if enabled explicitly by an undocumented cache entry. We will enable it on hosts known to have the toolchains.
15 lines
201 B
C
15 lines
201 B
C
#include "module.h"
|
|
#if defined(__USE_LIBFUN)
|
|
extern int iar_libfun();
|
|
#endif
|
|
__root int i;
|
|
__root int main()
|
|
{
|
|
#if defined(__USE_LIBFUN)
|
|
i = iar_libfun();
|
|
#else
|
|
i = INTERNAL;
|
|
#endif
|
|
return i;
|
|
}
|