https://github.com/Kitware/CMake
Raw File
Tip revision: d3190d6a730207a56ef2144566468975167a811e authored by Brad King on 11 April 2024, 14:12:19 UTC
CMake 3.29.2
Tip revision: d3190d6
iface_debug_src.cpp
#ifndef CFG_DEBUG
#  error "This source should only be compiled in a Debug configuration."
#endif
#ifdef CFG_OTHER
#  error "This source should not be compiled in a non-Debug configuration."
#endif

#include "iface.h"

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