File indexing completed on 2026-04-09 07:49:19
0001 #include <cstdio>
0002 #include "OpticksVersionNumber.hh"
0003
0004 int main()
0005 {
0006
0007 #if OPTICKS_VERSION_NUMBER < 10
0008 printf("OPTICKS_VERSION_NUMBER < 10 \n");
0009 #elif OPTICKS_VERSION_NUMBER == 10
0010 printf("OPTICKS_VERSION_NUMBER == 10 \n");
0011 #elif OPTICKS_VERSION_NUMBER > 10
0012 printf("OPTICKS_VERSION_NUMBER > 10 \n");
0013 #else
0014 printf("OPTICKS_VERSION_NUMBER unexpected \n");
0015 #endif
0016
0017
0018 #define xstr(s) str(s)
0019 #define str(s) #s
0020
0021 printf("%s\n",xstr(OPTICKS_VERSION_NUMBER));
0022
0023 return 0 ;
0024 }
0025
0026