https://github.com/Kitware/CMake
Raw File
Tip revision: 9532e1cf5b238ee5da2ea0b2fbb0194eaa5aaf03 authored by Brad King on 06 October 2023, 13:08:35 UTC
CMake 3.27.7
Tip revision: 9532e1c
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