This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
You've already forked CMake
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
6173dea153
CMake
/
Tests
/
LinkLineOrder
/
NoDepX.c
8 lines
84 B
C
Raw
Normal View
History
Unescape
Escape
converted c plus plus comments
2002-11-21 16:19:05 +03:00
/* depends on NoDepY*/
BUG: the dependency analysis would incorrectly alphabetically re-order the link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
2002-11-20 02:01:05 +03:00
void
NoDepY_func
(
)
;
void
NoDepX_func
(
)
{
NoDepY_func
(
)
;
}