index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
LinkLineOrder
/
NoDepA.c
blob: 76f97bc8c36ac9d928cab0993073176c30561a64 (
plain
)
1
2
3
4
5
6
7
/* depends on NoDepB */
void
NoDepB_func
();
void
NoDepA_func
()
{
NoDepB_func
();
}