cmake HAVE_DIRECT_FLOAT_FORMAT_REV examples

john30/ebusd CMakeLists.txt :151

check_cxx_source_runs("
#include <stdint.h>
int main() {
  union {
    uint32_t i;
    float f;
  } test;
  test.f = 0.15;
  return test.i == 0x9a99193e ? 0 : 1;
}
  " HAVE_DIRECT_FLOAT_FORMAT_REV)

john30/ebusd CMakeLists.txt :164

endif(HAVE_DIRECT_FLOAT_FORMAT_REV)