From 59a1531649fe0a8de38191771d0b12decfdea072 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Tue, 31 Oct 2017 21:31:15 +0100 Subject: fix OSX compile - link `xmr-stak-backend` to `xmrstak_cuda_backend` to solve missing symboles --- CMakeLists.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 595631d..4a1da75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -429,9 +429,7 @@ if(CUDA_FOUND) ) endif() target_link_libraries(xmrstak_cuda_backend ${CUDA_LIBRARIES}) - if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") - target_link_libraries(xmrstak_cuda_backend xmr-stak-backend) - endif() + target_link_libraries(xmrstak_cuda_backend xmr-stak-backend) endif() # compile AMD backend @@ -444,9 +442,7 @@ if(OpenCL_FOUND) ${OPENCLSRCFILES} ) target_link_libraries(xmrstak_opencl_backend ${OpenCL_LIBRARY} ) - if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") - target_link_libraries(xmrstak_opencl_backend xmr-stak-backend) - endif() + target_link_libraries(xmrstak_opencl_backend xmr-stak-backend) endif() # compile final binary -- cgit v1.1