CMake/Tests/LoadCommandOneConfig/LoadedCommand.cxx

27 lines
435 B
C++
Raw Normal View History

#include "LoadedCommand.h"
2002-12-05 11:55:53 -05:00
#include <stdio.h>
2002-09-16 16:27:00 -04:00
int main ()
{
2002-12-05 11:55:53 -05:00
#ifdef HAVE_VSBLABLA
printf("Should not be able to find vsblabla\n");
return 1;
#endif
#if !defined( HAVE_PRINTF )
printf("Should be able to find printf\n");
return 1;
#endif
2003-07-22 12:21:15 -04:00
#if !defined( ADDED_DEFINITION )
printf("Should have ADDED_DEFINITION defined\n");
return 1;
#endif
2002-09-16 16:27:00 -04:00
#ifdef CMAKE_IS_FUN
return SIZEOF_CHAR-1;
2002-09-16 16:27:00 -04:00
#else
return SIZEOF_SHORT;
2002-09-16 16:27:00 -04:00
#endif
}