mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
12 lines
351 B
CMake
12 lines
351 B
CMake
add_library( la INTERFACE )
|
|
set(sdir ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_sources( la INTERFACE
|
|
${sdir}/densemat.cpp ${sdir}/polynomial.cpp ${sdir}/bfgs.cpp ${sdir}/linopt.cpp ${sdir}/linsearch.cpp
|
|
)
|
|
|
|
install(FILES
|
|
densemat.hpp linalg.hpp opti.hpp
|
|
polynomial.hpp vector.hpp
|
|
DESTINATION ${NG_INSTALL_DIR_INCLUDE}/linalg COMPONENT netgen_devel
|
|
)
|