This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
0
You've already forked CMake
Code
Issues
Pull Requests
Releases
Wiki
Activity
CMake
/
Tests
/
LinkLineOrder
/
NoDepA.c
8 lines
85 B
C
Raw
Normal View
History
Unescape
Escape
fixed comments to be c style not c plus plus
2002-11-20 09:04:28 -05:00
/* depends on NoDepB */
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-19 18:01:05 -05:00
void
NoDepB_func
(
)
;
void
NoDepA_func
(
)
{
NoDepB_func
(
)
;
}
Reference in New Issue
Copy Permalink