mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-13 12:59:55 -05:00
We have tests for special characters in preprocessor definitions and custom command line arguments. Add such a test for include directories. Currently the Makefiles generators do not escape paths in `depend.make` in all cases, so leave a FIXME comment and skip the test for those. Issue: #20555
21 lines
378 B
C++
21 lines
378 B
C++
#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
|
|
# 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;
|
|
}
|