https://github.com/Kitware/CMake
Raw File
Tip revision: cdc901797ac4ce0d1feeec454ecdd29e8ef5d4ff authored by Brad King on 17 June 2024, 18:49:29 UTC
CMake 3.29.6
Tip revision: cdc9017
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