mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Add the support of per-source property COMPILE_OPTIONS, including generator expressions support. Related: #17507
13 lines
139 B
Plaintext
13 lines
139 B
Plaintext
int @TARGET_NAME@(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
#ifndef NAME
|
|
#error NAME not defined
|
|
#endif
|
|
return NAME();
|
|
}
|