From 9c80208a337f893741d7078b7c29dab990c8e795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20Pep=C3=A8=20Sciarria?= Date: Fri, 6 Jun 2025 14:57:12 +0200 Subject: [PATCH] hot fix: now cbind contains the c interface --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d13cc6fb..46372b6c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -666,7 +666,7 @@ if(PSB_BUILD_CUDA) if(NOT DEFINED PSB_CUDA_PATH) set(PSB_CUDA_PATH "/opt/cuda/12.8") endif() - # Include the CMakeLists for the cbind library + # Include the CMakeLists for the cuda library include(${CMAKE_CURRENT_LIST_DIR}/cuda/CMakeLists.txt) include_directories("${PSB_CUDA_PATH}/include") message(STATUS "${PSB_CUDA_PATH}") @@ -948,7 +948,8 @@ if(WIN32) PUBLIC psb_cbind_C) else() add_library(cbind_C OBJECT ${cbind_source_C_files}) - add_library(cbind ${cbind_source_files}) + add_library(cbind ${cbind_source_files} $) + endif()