https://github.com/Kitware/CMake
Revision 3d94ee0e03a82e602a8ce6c2b745f29285e69fd4 authored by Marc Chevrier on 05 August 2022, 08:54:45 UTC, committed by Marc Chevrier on 22 August 2022, 14:25:53 UTC
1 parent 553da06
Raw File
Tip revision: 3d94ee0e03a82e602a8ce6c2b745f29285e69fd4 authored by Marc Chevrier on 05 August 2022, 08:54:45 UTC
cmMakefile::RaiseScope: Add support for cmValue argument
Tip revision: 3d94ee0
main.cpp
#if !defined(CFG_DEBUG) && !defined(CFG_OTHER)
#  error "Neither CFG_DEBUG or CFG_OTHER is defined."
#endif
#ifdef CFG_DEBUG
#  include "main_debug.cpp"
#endif
#ifdef CFG_OTHER
#  include "main_other.cpp"
#endif
back to top