Add initial support for python bindings
[alexxy/gromacs.git] / cmake / TestX86.c
1 int main()
2 {
3 #if defined (__i386__) || defined (__x86_64__) || defined (_M_IX86) || defined (_M_X64)
4     return 0;
5 #else
6 #error This is not x86
7 #endif
8 }