X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FCMakeLists.txt;h=7d198a2c6e28ec69f92f043f79954e5afff26b1a;hb=a82ea9780de8241676648ca46e467a74e082f328;hp=75c42711c9e62857080e175da21f531779f8aae6;hpb=7d7f035606187db86fbfbe7eb537cbbac0bcbbca;p=modules%2Fshaper.git diff --git a/src/PythonAPI/CMakeLists.txt b/src/PythonAPI/CMakeLists.txt index 75c42711c..7d198a2c6 100644 --- a/src/PythonAPI/CMakeLists.txt +++ b/src/PythonAPI/CMakeLists.txt @@ -3,25 +3,39 @@ SET(CMAKE_AUTOMOC ON) -INSTALL(DIRECTORY extension geom model DESTINATION PythonAPI) +INSTALL(DIRECTORY extension geom model examples DESTINATION PythonAPI) +INSTALL(FILES shaper.py DESTINATION PythonAPI) # --------- Unit tests ----------- INCLUDE(UnitTest) ADD_UNIT_TESTS( + TestShaper.py TestModel.py + TestSketcherAddPoint.py TestSketcherAddLine.py TestSketcherAddArc.py TestSketcherAddCircle.py + TestSketcherAddMirror.py TestSketcherSetCoincident.py + TestSketcherSetTangent.py TestSketcherSetParallel.py TestSketcherSetPerpendicular.py TestSketcherSetHorizontal.py TestSketcherSetVertical.py + TestSketcherSetRigid.py TestSketcherSetLength.py TestSketcherSetRadius.py TestSketcherSetAngle.py TestSketcherSetEqual.py TestSketcherSetFillet.py - ) + + TestFeatures.py + TestFeaturesExtrusion.py + TestFeaturesRevolution.py + +# TestMakeBrick1.py +# TestMakeBrick2.py +# TestMakeBrick3.py + )