2021-10-28 16:57:24 +05:00
|
|
|
get_target_property(ngcore_compile_definitions ngcore INTERFACE_COMPILE_DEFINITIONS)
|
|
|
|
get_property(have_options TARGET ngcore PROPERTY INTERFACE_COMPILE_OPTIONS SET)
|
|
|
|
if(have_options)
|
|
|
|
get_target_property(ngcore_compile_options ngcore INTERFACE_COMPILE_OPTIONS)
|
|
|
|
endif(have_options)
|
|
|
|
|
|
|
|
configure_file(config.py ${CMAKE_CURRENT_BINARY_DIR}/config.py @ONLY)
|
2017-05-30 00:19:34 +05:00
|
|
|
|
|
|
|
install(FILES
|
2021-10-28 16:57:24 +05:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/config.py __main__.py __init__.py
|
2019-07-26 02:25:58 +05:00
|
|
|
meshing.py csg.py geom2d.py stl.py gui.py NgOCC.py occ.py read_gmsh.py
|
2021-08-12 14:20:07 +05:00
|
|
|
webgui.py
|
2017-05-30 00:19:34 +05:00
|
|
|
DESTINATION ${NG_INSTALL_DIR_PYTHON}/${NG_INSTALL_SUFFIX}
|
2015-04-08 23:04:28 +05:00
|
|
|
COMPONENT netgen
|
|
|
|
)
|
2019-06-29 23:01:05 +05:00
|
|
|
|
|
|
|
# build stub files for pybind11 packages
|
|
|
|
if(BUILD_STUB_FILES)
|
2020-07-25 11:46:46 +05:00
|
|
|
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import pybind11_stubgen; print(pybind11_stubgen.__file__)" OUTPUT_VARIABLE stubgen_path RESULT_VARIABLE pybind11_stubgen)
|
|
|
|
if(pybind11_stubgen AND NOT ${pybind11_stubgen} EQUAL 0)
|
2019-06-29 23:01:05 +05:00
|
|
|
message(WARNING "pybind11-stubgen not found, if you want to create stub files
|
|
|
|
for better autocompletion support install it with pip.")
|
2020-07-25 11:46:46 +05:00
|
|
|
else()
|
|
|
|
message("-- Found pybind11-stubgen: ${stubgen_path}")
|
2020-07-25 16:04:18 +05:00
|
|
|
install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pybind11_stubgen --no-setup-py netgen)")
|
2020-07-25 11:46:46 +05:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../stubs/netgen-stubs/ DESTINATION ${NG_INSTALL_DIR_PYTHON}/netgen/ COMPONENT netgen)
|
|
|
|
endif()
|
2019-06-29 23:01:05 +05:00
|
|
|
endif(BUILD_STUB_FILES)
|