From 9d500c9e0158df86ef9e77375d587b2f1048d593 Mon Sep 17 00:00:00 2001 From: Nathan Clack Date: Thu, 29 Aug 2024 08:49:17 -0700 Subject: [PATCH] upgrade to dcamsdk4 v24.8.6894 (#213) This PR just updates `hdcam.cmake` to add "Hamamatsu_DCAMSDK4_v24026764" to the cmake search path when looking for the library. I also added this to Ghanima. So this PR is also demonstrating that the self-hosted runner on that machine is working as expected. - I looked to make sure that the right version is being picked up in the config step. see [here](https://github.com/acquire-project/acquire-driver-hdcam/actions/runs/10604663052/job/29391807106?pr=213#step:7:64). --- cmake/hdcam.cmake | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cmake/hdcam.cmake b/cmake/hdcam.cmake index b97457d..ce9d88c 100644 --- a/cmake/hdcam.cmake +++ b/cmake/hdcam.cmake @@ -7,7 +7,9 @@ # folders should be on the system path. find_path(DCAMSDK_ROOT_DIR NAMES "dcamsdk4/inc/dcamapi4.h" - PATH_SUFFIXES "Hamamatsu_DCAMSDK4_v22126552" + PATH_SUFFIXES + "Hamamatsu_DCAMSDK4_v24026764" + "Hamamatsu_DCAMSDK4_v22126552" DOC "Hamamatsu DCAM-SDK location" NO_CACHE ) @@ -23,4 +25,4 @@ if(DCAMSDK_ROOT_DIR) ) else() message(STATUS "DCAM-SDK NOT FOUND") -endif() \ No newline at end of file +endif()