mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
29 lines
1.4 KiB
CMake
29 lines
1.4 KiB
CMake
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_template.py ${CMAKE_CURRENT_BINARY_DIR}/config.py @ONLY)
|
|
|
|
install(FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/config.py __main__.py __init__.py
|
|
meshing.py csg.py geom2d.py stl.py gui.py NgOCC.py occ.py read_gmsh.py
|
|
webgui.py
|
|
DESTINATION ${NG_INSTALL_DIR_PYTHON}/${NG_INSTALL_SUFFIX}
|
|
COMPONENT netgen
|
|
)
|
|
|
|
# build stub files for pybind11 packages
|
|
if(BUILD_STUB_FILES)
|
|
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)
|
|
message(WARNING "pybind11-stubgen not found, if you want to create stub files
|
|
for better autocompletion support install it with pip.")
|
|
else()
|
|
message("-- Found pybind11-stubgen: ${stubgen_path}")
|
|
install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pybind11_stubgen --no-setup-py netgen)")
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../stubs/netgen-stubs/ DESTINATION ${NG_INSTALL_DIR_PYTHON}/netgen/ COMPONENT netgen)
|
|
endif()
|
|
endif(BUILD_STUB_FILES)
|