https://github.com/Kitware/CMake
Raw File
Tip revision: 9703b32c1c75b0b343bb5043030a08a1b1345a20 authored by Brad King on 02 June 2016, 18:56:09 UTC
Merge branch 'FindHDF5-fix-already-found' into release
Tip revision: 9703b32
foo.cpp

#ifdef BAR_LIBRARY
#error Unexpected BAR_LIBRARY
#endif

#ifdef BANG_LIBRARY
#error Unexpected BANG_LIBRARY
#endif

#include "foo.h"

int foo()
{
  return 0;
}
back to top