You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
246 B
Python
14 lines
246 B
Python
|
3 years ago
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
#print("xmir_base (win)")
|
||
|
|
|
||
|
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
||
|
|
pyexe_dir = os.path.dirname(current_dir)
|
||
|
|
root_dir = os.path.dirname(pyexe_dir)
|
||
|
|
|
||
|
|
sys.path.append(root_dir + '/xmir_base')
|
||
|
|
|
||
|
|
import xmir_init
|
||
|
|
|