set INSTALL_TO_SITEPACKAGES to ON by default

and add some modules to the freecad-namespace (freecad.part, freecad.partdesign, freecad.sketcher)
This commit is contained in:
looooo
2024-01-02 23:03:27 +01:00
committed by Adrián Insaurralde Avalos
parent 476089a2ad
commit 8e2ab9f768
5 changed files with 7 additions and 1 deletions

View File

@@ -38,6 +38,9 @@ endif()
INSTALL(
FILES
${NAMESPACE_INIT}
part.py
partdesign.py
sketcher.py
project_utility.py
UiTools.py
utils.py

1
src/Ext/freecad/part.py Normal file
View File

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

View File

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

View File

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