2015-03-06 18:59:14 +05:00
|
|
|
add_definitions(-DNGINTERFACE_EXPORTS)
|
2019-01-08 15:26:29 +05:00
|
|
|
add_library(gen INTERFACE)
|
|
|
|
set(sdir ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
target_sources(gen INTERFACE
|
2019-08-28 17:00:49 +05:00
|
|
|
${sdir}/ngarray.cpp ${sdir}/ngbitarray.cpp ${sdir}/dynamicmem.cpp
|
2019-01-08 15:26:29 +05:00
|
|
|
${sdir}/hashtabl.cpp ${sdir}/mystring.cpp ${sdir}/optmem.cpp ${sdir}/parthreads.cpp
|
|
|
|
${sdir}/seti.cpp ${sdir}/sort.cpp ${sdir}/spbita2d.cpp ${sdir}/table.cpp
|
|
|
|
${sdir}/mpi_interface.cpp ${sdir}/gzstream.cpp
|
2015-03-06 18:59:14 +05:00
|
|
|
)
|
|
|
|
|
2017-01-16 18:56:57 +05:00
|
|
|
install(FILES
|
2019-08-28 17:00:49 +05:00
|
|
|
ngarray.hpp autodiff.hpp autoptr.hpp ngbitarray.hpp
|
2019-08-06 17:16:13 +05:00
|
|
|
dynamicmem.hpp hashtabl.hpp mpi_interface.hpp myadt.hpp
|
2019-01-07 15:26:46 +05:00
|
|
|
ngsimd.hpp mystring.hpp netgenout.hpp ngpython.hpp
|
|
|
|
optmem.hpp parthreads.hpp seti.hpp sort.hpp
|
2019-01-02 22:21:52 +05:00
|
|
|
spbita2d.hpp stack.hpp table.hpp template.hpp
|
2017-01-16 18:56:57 +05:00
|
|
|
gzstream.h
|
2017-05-30 00:19:34 +05:00
|
|
|
DESTINATION ${NG_INSTALL_DIR_INCLUDE}/general COMPONENT netgen_devel
|
2017-01-16 18:56:57 +05:00
|
|
|
)
|