mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-13 18:49:38 -06:00
This allows users to specify different genex-based compile definitions for each file in a target. Fixes: #17508
13 lines
139 B
C
13 lines
139 B
C
int srcgenex_defs(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
#ifndef NAME
|
|
#error NAME not defined
|
|
#endif
|
|
return NAME();
|
|
}
|