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
#include "Flags.h"
#include "IncDir.h"
#include "SrcProp.h"
#include "TarProp.h"

#ifdef INCLUDE_SPECIAL_DIR
#  include "SpecialDir.h"
#  ifndef SPECIAL_DIR_H
#    error "SPECIAL_DIR_H not defined"
#  endif
#endif

#ifdef INCLUDE_SPECIAL_SPACE_DIR
#  include "SpecialSpaceDir.h"
#  ifndef SPECIAL_SPACE_DIR_H
#    error "SPECIAL_SPACE_DIR_H not defined"
#  endif
#endif

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