Suppose that my project dirs like this:
src
|
|---lib1
| |
| |--lib1.cpp
| |--lib1.hpp
| |--lib1test.cpp
|
|---lib2
| |
| |--lib2.cpp
| |--lib2.hpp
| |--lib2test.cpp
|
|main.cpp
Now the lib1 has developed,and lib2 is on developing. Lib2 uses some features in lib1.I need do some test for lib2, this means when build lib2 tests under lib2, it should build lib1 first. How can I write three CMakeLists.txt files that lib2 test build depend on same level dir lib1?