swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: 0f4e8fd0e9d4be3d6a9b6fd6d5a89f5155192064 authored by Brad King on 17 March 2014, 17:14:27 UTC
CMake 3.0.0-rc2
Tip revision: 0f4e8fd
map_config.cpp

#ifdef DEBUG_MODE
#ifndef SPECIAL_MODE
#error Special configuration should be mapped to debug configuration.
#endif
#else
#ifdef SPECIAL_MODE
#error Special configuration should not be enabled if not debug configuration
#endif
#endif

int main(int,char**)
{
  return 0;
}
back to top