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