mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-13 22:50:33 +05:00
Merge branch 'fix_tkinter_import' into 'master'
[python] Import tkinter only when necessary See merge request !69
This commit is contained in:
commit
b405528b37
@ -1,3 +1,8 @@
|
|||||||
|
if(USE_GUI)
|
||||||
|
set(IMPORT_TKINTER True)
|
||||||
|
else()
|
||||||
|
set(IMPORT_TKINTER False)
|
||||||
|
endif()
|
||||||
configure_file(__init__.py ${CMAKE_CURRENT_BINARY_DIR}/__init__.py @ONLY)
|
configure_file(__init__.py ${CMAKE_CURRENT_BINARY_DIR}/__init__.py @ONLY)
|
||||||
|
|
||||||
install(FILES
|
install(FILES
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
# import tkinter only if Netgen was configured with USE_GUI=ON
|
||||||
|
if @IMPORT_TKINTER@:
|
||||||
import tkinter
|
import tkinter
|
||||||
|
|
||||||
_netgen_bin_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..','@NETGEN_PYTHON_RPATH_BIN@'))
|
_netgen_bin_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..','@NETGEN_PYTHON_RPATH_BIN@'))
|
||||||
|
Loading…
Reference in New Issue
Block a user