X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FCMakeLists.txt;h=33337d6e39a45526000e90771316e19874717e6a;hb=3205d0f18200948632155bbe7b640bc1e482243d;hp=f1ab36274eb75ef74e55ab0ab93d56cf553c3c87;hpb=6e2b8275b13138cb294beccab0f55188bd91922e;p=modules%2Fshaper.git diff --git a/src/PythonAPI/CMakeLists.txt b/src/PythonAPI/CMakeLists.txt index f1ab36274..33337d6e3 100644 --- a/src/PythonAPI/CMakeLists.txt +++ b/src/PythonAPI/CMakeLists.txt @@ -3,21 +3,40 @@ 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( + TestPythonAPI.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 + TestPlatine.py + )