You can set the number of concurrent processes used in your build process using CMAKE_BUILD_PARALLEL_LEVEL in your CMake file. For example:
CMAKE_BUILD_PARALLEL_LEVEL
set(CMAKE_BUILD_PARALLEL_LEVEL 10)
is equal to specify -j 10 in your cmake command line.
-j 10