https://github.com/Kitware/CMake
Raw File
Tip revision: 32e6ee29d7c0dd91b3157a99e010acc03eaeeb5a authored by Kyle Edwards on 25 August 2022, 13:14:13 UTC
Merge topic 'file-set-source-group' into release-3.24
Tip revision: 32e6ee2
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