mirror of
https://github.com/paboyle/Grid.git
synced 2026-03-13 07:51:01 +00:00
17 lines
390 B
C++
17 lines
390 B
C++
#include <Grid/Grid.h>
|
|
|
|
#pragma once
|
|
|
|
#ifndef ENABLE_FERMION_INSTANTIATIONS
|
|
#include <iostream>
|
|
|
|
int main(void) {
|
|
std::cout << "This build of Grid was configured to exclude fermion instantiations, "
|
|
<< "which this test relies on. "
|
|
<< "Please reconfigure and rebuild Grid with --enable-fermion-instantiations"
|
|
<< "to run this test."
|
|
<< std::endl;
|
|
return 1;
|
|
}
|
|
#endif
|