CMake/Tests/ConfigSources/custom1.cpp.in
Brad King c257c25419 add_custom_{command,target}: Add genex support to OUTPUT and BYPRODUCTS
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
2020-12-11 08:24:21 -05:00

14 lines
135 B
C++

#ifdef CUSTOM_CFG_DEBUG
int custom1_debug()
{
return 0;
}
#endif
#ifdef CUSTOM_CFG_OTHER
int custom1_other()
{
return 0;
}
#endif