1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-16 14:08:35 +08:00
Files
CMake/Tests/ConfigSources/custom2.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 custom2_debug()
{
return 0;
}
#endif
#ifdef CUSTOM_CFG_OTHER
int custom2_other()
{
return 0;
}
#endif