2015-03-06 18:59:14 +05:00
|
|
|
add_definitions(-DNGINTERFACE_EXPORTS)
|
|
|
|
add_library(gen OBJECT
|
|
|
|
array.cpp bitarray.cpp dynamicmem.cpp flags.cpp
|
|
|
|
hashtabl.cpp mystring.cpp ngexception.cpp optmem.cpp parthreads.cpp
|
2019-01-02 22:21:52 +05:00
|
|
|
profiler.cpp seti.cpp sort.cpp spbita2d.cpp table.cpp
|
2015-03-06 18:59:14 +05:00
|
|
|
mpi_interface.cpp gzstream.cpp
|
|
|
|
)
|
|
|
|
|
2018-12-28 17:43:15 +05:00
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries(gen ngcore)
|
|
|
|
endif(NOT WIN32)
|
|
|
|
|
2015-03-06 18:59:14 +05:00
|
|
|
set_target_properties( gen PROPERTIES POSITION_INDEPENDENT_CODE ON )
|
|
|
|
|
2017-05-30 00:19:34 +05:00
|
|
|
install( FILES ngexception.hpp DESTINATION ${NG_INSTALL_DIR_INCLUDE} COMPONENT netgen_devel )
|
2015-03-06 18:59:14 +05:00
|
|
|
|
2017-01-16 18:56:57 +05:00
|
|
|
install(FILES
|
2018-11-29 22:35:30 +05:00
|
|
|
array.hpp autodiff.hpp autoptr.hpp bitarray.hpp
|
2017-01-16 18:56:57 +05:00
|
|
|
dynamicmem.hpp flags.hpp hashtabl.hpp mpi_interface.hpp myadt.hpp
|
2017-04-19 21:02:27 +05:00
|
|
|
ngsimd.hpp mystring.hpp netgenout.hpp ngexception.hpp ngpython.hpp
|
2017-01-16 18:56:57 +05:00
|
|
|
optmem.hpp parthreads.hpp profiler.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
|
|
|
)
|