mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
#include "@EXPORT_HEADER@"
|
|
|
|
int main()
|
|
{
|
|
#if defined(@DEF_SYMBOL@) && !defined(@NDEF_SYMBOL@)
|
|
return 0;
|
|
#else
|
|
return 1;
|
|
#endif
|
|
}
|