From 37aaea102209af9a8904ac8d4912acf2226016ff Mon Sep 17 00:00:00 2001 From: "Joshua M. Doe" Date: Thu, 27 Feb 2020 09:59:31 -0500 Subject: [PATCH] build: newer Aptina SDK drops the _64 library suffix --- cmake/modules/FindAptina.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/FindAptina.cmake b/cmake/modules/FindAptina.cmake index 8d4197d..b1127b7 100644 --- a/cmake/modules/FindAptina.cmake +++ b/cmake/modules/FindAptina.cmake @@ -16,7 +16,7 @@ if (NOT APTINA_DIR) endif () if (CMAKE_SIZEOF_VOID_P MATCHES "8") - set(_LIB_NAME "apbase_64") + set(_LIB_NAME "apbase") else () set(_LIB_NAME "apbase") endif ()