mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
c257c25419
Move rejection of `#`, `<`, and `>` characters in outputs and byproducts to a generate-time check. This removes the front-end check that disallowed generator expressions. The generators have already been updated to handle them. Fixes: #12877
14 lines
135 B
Plaintext
14 lines
135 B
Plaintext
#ifdef CUSTOM_CFG_DEBUG
|
|
int custom1_debug()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CUSTOM_CFG_OTHER
|
|
int custom1_other()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|