From d20cbd2a046d02fd67e8af3677576fdd7903c9f2 Mon Sep 17 00:00:00 2001 From: Martin Beseda <martin.beseda@vsb.cz> Date: Thu, 21 Feb 2019 03:34:12 +0100 Subject: [PATCH] FIX: Added missing PROPERTIES flag --- DownloadOpenBLAS.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DownloadOpenBLAS.cmake b/DownloadOpenBLAS.cmake index f78238f2..8a8c9f70 100644 --- a/DownloadOpenBLAS.cmake +++ b/DownloadOpenBLAS.cmake @@ -21,7 +21,7 @@ FetchContent_Populate(OpenBLAS) # Build OpenBLAS # ################## execute_process( - COMMAND cmake -j ${N_CORES} . + COMMAND cmake ${PARALLEL_BUILD_FLAG} ${N_CORES} . WORKING_DIRECTORY ${OPENBLAS_LOCAL_PATH} RESULT_VARIABLE rv ) @@ -30,7 +30,7 @@ if(NOT rv STREQUAL "0") endif() # Add a compile flag -lgfortran and -lpthreads -set_target_properties(${LIB_PREFIX}openblas.${LIB_SUFFIX} LINK_FLAGS "-lgfortran -lpthreads") +set_target_properties(${LIB_PREFIX}openblas.${LIB_SUFFIX} PROPERTIES LINK_FLAGS "-lgfortran -lpthreads") # Build library execute_process( -- GitLab