Skip to content

Commit f7b36ab

Browse files
author
Harry Hughes
committed
trying to figure out how the build system works
1 parent 3a72fc1 commit f7b36ab

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

tests/functionality/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ if(RESOLVE_USE_CUDA)
3636
add_executable(klu_rf_fgmres_test.exe testKLU_Rf_FGMRES.cpp)
3737
target_link_libraries(klu_rf_fgmres_test.exe PRIVATE ReSolve)
3838

39-
add_library( FunctionalityTestHelper SHARED FunctionalityTestHelper.cpp )
40-
# Captain! add_library for functionality test helper, build it, then link it here
41-
target_include_directories( FunctionalityTestHelper PUBLIC ../.. )
42-
4339
# System solver test with cusolver rf and iterative refinement
4440
add_executable(sys_refactor_cuda_test.exe testSysRefactor.cpp)
4541
target_link_libraries(sys_refactor_cuda_test.exe PRIVATE ReSolve FunctionalityTestHelper )

tests/functionality/FunctionalityTestHelper.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
#include "FunctionalityTestHelper.hpp"
2+
#include <resolve/vector/Vector.hpp>
3+
#include <resolve/matrix/io.hpp>
4+
#include <resolve/matrix/Coo.hpp>
5+
#include <resolve/matrix/Csr.hpp>
6+
#include <resolve/matrix/Csc.hpp>
7+
#include <resolve/matrix/MatrixHandler.hpp>
8+
#include <resolve/vector/VectorHandler.hpp>
9+
#include <resolve/LinSolverDirectKLU.hpp>
10+
#include <resolve/LinSolverIterativeFGMRES.hpp>
11+
#include <resolve/workspace/LinAlgWorkspace.hpp>
12+
#include <resolve/SystemSolver.hpp>
213

314
namespace ReSolve
415
{

0 commit comments

Comments
 (0)