Skip to content

Commit

Permalink
[qt5] Fix invocation of build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Warren committed Mar 11, 2019
1 parent ce94651 commit 992b2be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/cmake/vcpkg_build_qmake.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ function(vcpkg_build_qmake)

if(CMAKE_HOST_WIN32)
vcpkg_find_acquire_program(JOM)
set(INVOKE "${JOM}" /J ${NUMBER_OF_PROCESSORS})
set(INVOKE "${JOM}")
else()
find_program(MAKE make)
set(INVOKE "${MAKE}" -j${NUMBER_OF_PROCESSORS})
set(INVOKE "${MAKE}")
endif()

# Make sure that the linker finds the libraries used
Expand Down

0 comments on commit 992b2be

Please sign in to comment.