Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it somehow possible to be able to have a parallel build no matter which build tool is used?

Under UNIX we can add "make -jN" where N are the number of threads and under Windows I added the CXX FLAG "/MP" which is then used in Visual STUDIO to parallel build...? How can I make my version such that CMAKE_MAKE_PROGRAM is not always extended when I run CMAKE!?

What is a general solution?

I came up with this:

#Add some multithreaded build support
MARK_AS_ADVANCED(MULTITHREADED_BUILD)
set(MULTITHREADED_BUILD 12 CACHE STRING "How many threads are used to build the project")
if(MULTITHREADED_BUILD)
    if(${CMAKE_GENERATOR} MATCHES "Unix Makefiles")
            message(STATUS ${CMAKE_BUILD_TOOL})
            set(CMAKE_MAKE_PROGRAM "${CMAKE_MAKE_PROGRAM} -j${MULTITHREADED_BUILD}")
            message(STATUS "Added arguments to CMAKE_BUILD_TOOL: ${CMAKE_MAKE_PROGRAM}")
    elseif(MSVC)
      set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
      message(STATUS "Added parallel build arguments to CMAKE_CXX_FLAGS: ${CMAKE_CXX_FLAGS}")
    endif()
endif()
share|improve this question
Not sure it can be done, don't think its a good idea anyway. CMake describes how the project is build and how make does its thing is a different level from CMake. – Lap May 22 '12 at 16:08
Exetnding your approach just add -DMULTITHREADED_BUILD=12 to the command line of cmake. and remove the SET(MULTITHREADED_BUILD ...) – bikram990 May 14 at 11:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.