mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 09:00:42 +00:00
0e6b39e52f
- Make sure the original link line is untouched - Avoid duplicating the link line when supporting version < 1.4 - Make sure the cyclic dependencies and such are output correctly in complicated cases. - Avoid outputing dependencies that are already satisfied on the original link line when possible.
11 lines
97 B
C
11 lines
97 B
C
void OneFunc();
|
|
|
|
void TwoFunc()
|
|
{
|
|
static int i = 0;
|
|
++i;
|
|
if( i==1 ) {
|
|
OneFunc();
|
|
}
|
|
}
|