mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
Some are user facing.
Found using
codespell -q 3 --skip="./Utilities" -I .cmake-whitelist.txt`
whereby the whitelist contained:
ans
dum
helpfull
emmited
emmitted
buil
iff
isnt
nto
ot
pathes
substract
te
todays
upto
whitespaces
54 lines
724 B
Fortran
54 lines
724 B
Fortran
MODULE Available
|
|
! no content
|
|
END MODULE
|
|
|
|
PROGRAM PPTEST
|
|
! value of InPPFalseBranch ; values of SkipToEnd
|
|
! 0 <empty>
|
|
#ifndef FOO
|
|
! 1 ; <0>
|
|
USE NotAvailable
|
|
# ifndef FOO
|
|
! 2 ; <0,0>
|
|
USE NotAvailable
|
|
# else
|
|
! 2 ; <0,0>
|
|
USE NotAvailable
|
|
# endif
|
|
! 1 ; <0>
|
|
# ifdef FOO
|
|
! 2 ; <0,1>
|
|
USE NotAvailable
|
|
# else
|
|
! 2 ; <0,1>
|
|
USE NotAvailable
|
|
# endif
|
|
! 1 ; <0>
|
|
#else
|
|
! 0 ; <0>
|
|
USE Available
|
|
# ifndef FOO
|
|
! 1 ; <0,0>
|
|
USE NotAvailable
|
|
# else
|
|
! 0 ; <0,0>
|
|
USE Available
|
|
# endif
|
|
! 0 ; <0>
|
|
# ifdef FOO
|
|
! 0 ; <0,1>
|
|
USE Available
|
|
# else
|
|
! 1 ; <0,1>
|
|
USE NotAvailable
|
|
# endif
|
|
! 0 ; <0>
|
|
#endif
|
|
! 0 ; <empty>
|
|
|
|
USE PPAvailable
|
|
|
|
#include "test_preprocess.h"
|
|
|
|
END PROGRAM
|