From 2beabedaa269ce90214695016590539a697527a7 Mon Sep 17 00:00:00 2001 From: "Joshua M. Doe" Date: Fri, 25 Feb 2022 10:16:25 -0500 Subject: [PATCH] idsueyesrc: fix CMake build with default path Before, Pleora would only be found if Pleora_DIR was specified --- cmake/modules/FindPleora.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/FindPleora.cmake b/cmake/modules/FindPleora.cmake index cdc2887..d37969b 100644 --- a/cmake/modules/FindPleora.cmake +++ b/cmake/modules/FindPleora.cmake @@ -24,8 +24,8 @@ endif () set (_Pleora_PATHS PATHS "${Pleora_DIR}" - "C:/Program Files/Pleora Technologies Inc/eBUS SDK/Includes" - "C:/Program Files (x86)/Pleora Technologies Inc/eBUS SDK/Includes") + "C:/Program Files/Pleora Technologies Inc/eBUS SDK" + "C:/Program Files (x86)/Pleora Technologies Inc/eBUS SDK") find_path (Pleora_INCLUDE_DIR PvBase.h PATHS ${_Pleora_PATHS}