Skip to content
Snippets Groups Projects
Commit a358f696 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Fixed bad flag in DownloadBoost

parent 54b607cf
No related branches found
No related tags found
No related merge requests found
...@@ -41,10 +41,10 @@ FetchContent_Populate(boost) ...@@ -41,10 +41,10 @@ FetchContent_Populate(boost)
# Build Boost # # Build Boost #
############### ###############
set(BOOTSTRAP_CMD sh bootstrap.sh) set(BOOTSTRAP_CMD sh bootstrap.sh)
set(B2_CMD ./b2 ${PARALLEL_BUILD_FLAG}${N_CORES}) set(B2_CMD ./b2 -j${N_CORES})
if(WIN32) if(WIN32)
set(BOOTSTRAP_CMD bootstrap.bat) set(BOOTSTRAP_CMD bootstrap.bat)
set(B2_CMD b2 ${PARALLEL_BUILD_FLAG}${N_CORES}) set(B2_CMD b2 -j${N_CORES})
endif() endif()
execute_process( execute_process(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment