diff options
Diffstat (limited to 'Tests/RunCMake/target_compile_options/CMP0101.c')
-rw-r--r-- | Tests/RunCMake/target_compile_options/CMP0101.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/target_compile_options/CMP0101.c b/Tests/RunCMake/target_compile_options/CMP0101.c new file mode 100644 index 0000000..250869a --- /dev/null +++ b/Tests/RunCMake/target_compile_options/CMP0101.c @@ -0,0 +1,9 @@ + +#if defined(BEFORE_KEYWORD) +# error "BEFORE not honored" +#endif + +int main() +{ + return 0; +} |