From 3e5924ba68aad3ee95bdf9380f055a8a0fa21173 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 24 Aug 2023 10:47:57 +0200 Subject: [PATCH] fixed: use correct path these tests were missing when using Apps/CMakeLists.txt --- cmake/Scripts/IFEMTesting.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Scripts/IFEMTesting.cmake b/cmake/Scripts/IFEMTesting.cmake index c59555da..a80e1cb8 100644 --- a/cmake/Scripts/IFEMTesting.cmake +++ b/cmake/Scripts/IFEMTesting.cmake @@ -38,7 +38,7 @@ macro(IFEM_add_unittests IFEM_PATH) endif() if(LRSPLINE_FOUND OR LRSpline_FOUND) - file(GLOB LR_TEST_SRCS ${PROJECT_SOURCE_DIR}/src/ASM/LR/Test/*.C) + file(GLOB LR_TEST_SRCS ${IFEM_PATH}/src/ASM/LR/Test/*.C) list(APPEND TEST_SOURCES ${LR_TEST_SRCS}) else() list(REMOVE_ITEM TEST_SOURCES ${IFEM_PATH}/src/Utility/Test/TestFieldFunctionsLR.C)