From 2650f7478e53ec96a4284c0086848f4f70a9c114 Mon Sep 17 00:00:00 2001 From: "Herbert J. Bernstein" Date: Sat, 3 Apr 2021 08:09:27 -0400 Subject: [PATCH] Update CMakeLists.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed in response to Bernd Unsubscribe 6:53 AM (1 hour ago) to yayahjb/cbflib, Subscribed There's a missing ending string quote in the cmake file at https://github.com/yayahjb/cbflib/blob/6f8cb004d29b3537cb4942a1be88dbb6c5da712e/CMakeLists.txt#L1098 — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ac0c1fb6..fef018f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1095,7 +1095,7 @@ macro(CBF_APPEND_TEST_ENVIRONMENT TESTNAME) ELSE(APPLE) set( xrpathname "LD_LIBRARY_PATH" ) ENDIF(APPLE) - set (xrpath "${HDF5_INSTALL_DIR}/lib;$ENV{${xrpathname}) + set (xrpath "${HDF5_INSTALL_DIR}/lib;$ENV{${xrpathname}") ENDIF(WIN32) set_property(TEST ${TESTNAME} APPEND PROPERTY ENVIRONMENT "$xrpathname=${xrpath}") endmacro(CBF_APPEND_TEST_ENVIRONMENT TESTNAME)