https://github.com/Kitware/CMake
Raw File
Tip revision: 177fc020731bcee747295573c92cd0f7ca200e53 authored by Brad King on 22 September 2020, 12:53:09 UTC
CMake 3.18.3
Tip revision: 177fc02
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