From 8ed0c9ab502ac1551d14db209c1d5fb7290cfe0f Mon Sep 17 00:00:00 2001 From: Alan Liddell Date: Tue, 3 Oct 2023 14:53:54 -0500 Subject: [PATCH 1/2] find Spinnaker.h / libSpinnaker.so on Linux --- cmake/spinnaker.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake/spinnaker.cmake b/cmake/spinnaker.cmake index aa1912d..250b856 100644 --- a/cmake/spinnaker.cmake +++ b/cmake/spinnaker.cmake @@ -4,6 +4,7 @@ find_path(spinnaker_include_dir "Spinnaker.h" PATH_SUFFIXES "include/spinnaker" # osx "FLIR Systems/Spinnaker/include" # windows + "spinnaker/include" # linux DOC "Directory that contains Spinnaker.h" NO_CACHE) @@ -28,6 +29,10 @@ if(spinnaker_include_dir) set_target_properties(${tgt} PROPERTIES IMPORTED_LOCATION "${spinnaker_include_dir}../../lib/libSpinnaker.dylib" ) + elseif(LINUX) + set_target_properties(${tgt} PROPERTIES + IMPORTED_LOCATION "${spinnaker_include_dir}../lib/libSpinnaker.so" + ) endif() else() message(STATUS "Could not find Spinnaker.h") From 021953fc59bfcff69dcd2e99d9ddb1805ca75db4 Mon Sep 17 00:00:00 2001 From: Alan Liddell Date: Mon, 9 Sep 2024 16:58:56 -0700 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c41fca0..6aa2e61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2](https://github.com/acquire-project/acquire-driver-spinnaker/compare/v0.1.1...v0.1.2) - 2024-09-09 + +### Added + +- Linux support. + ## [0.1.1](https://github.com/acquire-project/acquire-driver-spinnaker/compare/v0.1.0...v0.1.1) - 2023-10-02 ### Added