2002-05-01 22:00:21 +04:00
|
|
|
PROJECT( Dependency )
|
|
|
|
|
|
|
|
# There is one executable that depends on eight libraries. The
|
|
|
|
# system has the following dependency graph:
|
|
|
|
#
|
|
|
|
# NoDepA:
|
|
|
|
# NoDepB: NoDepA
|
|
|
|
# NoDepC: NoDepA
|
|
|
|
# One:
|
|
|
|
# Two: Three
|
|
|
|
# Three: One Four
|
2002-05-02 00:33:27 +04:00
|
|
|
# Four: One Two NoDepA
|
2002-05-01 22:00:21 +04:00
|
|
|
# Five: Two
|
2002-05-02 00:24:47 +04:00
|
|
|
# SixA: Two Five
|
|
|
|
# SixB: Four Five
|
2002-05-10 21:35:42 +04:00
|
|
|
# Seven: Two
|
|
|
|
# Eight: Seven
|
|
|
|
#
|
2002-05-02 00:24:47 +04:00
|
|
|
# Exec: NoDepB NoDepC SixA SixB
|
2002-05-10 21:35:42 +04:00
|
|
|
# Exec2: Eight Five
|
|
|
|
# Exec3: Eight Five
|
|
|
|
# Exec4: Five Two
|
2002-05-01 22:00:21 +04:00
|
|
|
#
|
2002-05-10 21:35:42 +04:00
|
|
|
# The libraries One,...,Eight have their dependencies explicitly
|
2002-05-01 22:00:21 +04:00
|
|
|
# encoded. The libraries NoDepA,...,NoDepC do not.
|
2002-05-02 00:24:47 +04:00
|
|
|
#
|
|
|
|
# Although SixB does not depend on Two, there is a dependency listed
|
|
|
|
# in the corresponding CMakeLists.txt just because of commands used.
|
2002-05-01 22:00:21 +04:00
|
|
|
|
|
|
|
SUBDIRS( NoDepA NoDepB NoDepC )
|
2002-05-10 21:35:42 +04:00
|
|
|
SUBDIRS( One Two Three Four Five Six Seven Eight )
|
|
|
|
SUBDIRS( Exec Exec2 Exec3 Exec4 )
|