mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
11 lines
133 B
C++
11 lines
133 B
C++
#include "@EXPORT_HEADER@"
|
|
|
|
int main()
|
|
{
|
|
#if defined(@DEF_SYMBOL@) && !defined(@NDEF_SYMBOL@)
|
|
return 0;
|
|
#else
|
|
return 1;
|
|
#endif
|
|
}
|