Added python based Path module and pull in PathApp namespace

This commit is contained in:
Markus Lampert
2022-08-04 22:32:59 -07:00
parent 7992f3ed00
commit 7e643c563b
2 changed files with 13 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ INSTALL(
Mod/Path
)
SET(PathPython_SRCS
Path/__init__.py
)
SET(PathScripts_SRCS
PathScripts/drillableLib.py
PathScripts/PathAdaptive.py
@@ -313,6 +317,7 @@ SET(Path_Data
SET(all_files
${PathScripts_SRCS}
${PathPython_SRCS}
${Generator_SRCS}
${PathScripts_post_SRCS}
${PathPythonGui_SRCS}
@@ -347,6 +352,13 @@ INSTALL(
Mod/Path/PathScripts
)
INSTALL(
FILES
${PathPython_SRCS}
DESTINATION
Mod/Path/Path
)
INSTALL(
FILES
${Generator_SRCS}

View File

@@ -0,0 +1 @@
from PathApp import *