STYLE: Nightly Version update
[cmake.git] / Tests / LinkLine / CMakeLists.txt
bloba7d138d7ef40dc12b86175685daa708978f81731
1 PROJECT( LinkLine )
3 # Makes sure that the library order as specified by the user are
4 # unchanged by dependency analysis, etc.  libOne and libTwo are
5 # dependent on each other. The link line should be -lOne -lTwo -lOne.
7 ADD_LIBRARY( One One.c )
8 ADD_LIBRARY( Two Two.c )
10 LINK_LIBRARIES( One Two )
11 ADD_EXECUTABLE( Exec Exec.c )
12 LINK_LIBRARIES( One )