Commit 797143d5 authored by Doak, Peter W.'s avatar Doak, Peter W.
Browse files

get lib list quoting correct

parent fbdb51b4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,9 +14,9 @@ endif()

dca_add_gtest(set_to_zero_test GTEST_MAIN)

set(FUNCTION_CONSTRUCTION_TEST_LIBS ${DCA_LIBS};parallel_mpi_concurrency;function)
set(FUNCTION_CONSTRUCTION_TEST_LIBS "parallel_mpi_concurrency;function")
if(DCA_HAVE_GPU)
  set(FUNCTION_CONSTRUCTION_TEST_LIBS "${FUNCTION_CONSTRUCTION_TEST_LIBS} gpu_utils")
  set(FUNCTION_CONSTRUCTION_TEST_LIBS "gpu_utils;${FUNCTION_CONSTRUCTION_TEST_LIBS}")
endif(DCA_HAVE_GPU)

dca_add_gtest(function_construction_test
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

set(MPI_TEST_LIBS parallel_mpi_concurrency)
if(DCA_HAVE_GPU)
  set(MPI_TEST_LIBS "${MPI_TEST_LIBS} gpu_utils")
  set(MPI_TEST_LIBS "${MPI_TEST_LIBS};gpu_utils")
endif(DCA_HAVE_GPU)

dca_add_gtest(mpi_collective_max_test