I am using cmake for my project, but I have another library in a subdirectory ( say lib/ ) which uses a plain Makefile. How do I instruct CMake to run the Makefile in lib as part of the build process?
|
1
|
|||
|
|
|
The solution is to use:
|
||
|
|
|
|
If your /lib contains its own CMakeLists.txt, just use the add_subdirectory command:
Else you have to use exec_program command:
where script.sh is
do not forget
In my opinion, the first solution is better !!! |
||||
|
