vote up 2 vote down star
1

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?

flag

25% accept rate
This Makefile is single or generated by cmake ? – Nadir SOUALEM Sep 30 at 18:13

2 Answers

vote up 1 vote down

The solution is to use:

execute_process ( COMMAND make WORKING_DIRECTORY ${project_SOURCE_DIR}/path/to/lib )

link|flag
vote up 0 vote down

If your /lib contains its own CMakeLists.txt, just use the add_subdirectory command:

add_subdirectory(/path/of/your/lib/that/contains/CMakeLists.txt)

Else

you have to use exec_program command:

exec_program(script.sh)

where script.sh is

#!/bin/sh
cd /path/of/your/lib/ && make

do not forget

chmod +x script.sh

In my opinion, the first solution is better !!!

link|flag
1  
thanks for the reply, but execute_process() has superseded it. I found the answer the next day. – Nikhil Oct 1 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.