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: 4f4904c67943d58c69f7495d67f404636d710ffb (
plain
)
1
2
3
4
5
6
7
// depends on NoDepB
void
NoDepB_func
();
void
NoDepA_func
()
{
NoDepB_func
();
}