Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[modules/shaper.git] / src / SketchPlugin / CMakeLists.txt
index 15bbb1fb7281c5a4d3f6cf05e63f117b1ea42903..22ce7d27eda3dce82e05a8039a73bad2c22198c1 100644 (file)
@@ -8,6 +8,7 @@ SET(PROJECT_HEADERS
     SketchPlugin_Feature.h
     SketchPlugin_Plugin.h
     SketchPlugin_Sketch.h
+    SketchPlugin_SketchEntity.h
     SketchPlugin_Line.h
     SketchPlugin_Point.h
     SketchPlugin_Circle.h
@@ -21,15 +22,21 @@ SET(PROJECT_HEADERS
     SketchPlugin_ConstraintPerpendicular.h
     SketchPlugin_ConstraintRadius.h
     SketchPlugin_ConstraintRigid.h
+    SketchPlugin_ConstraintHorizontal.h
+    SketchPlugin_ConstraintVertical.h
+    SketchPlugin_ConstraintEqual.h
+    SketchPlugin_ConstraintTangent.h
+    SketchPlugin_ConstraintMirror.h
+    SketchPlugin_ConstraintFillet.h
     SketchPlugin_ShapeValidator.h
     SketchPlugin_Validators.h
-    SketchPlugin_ResultValidators.h 
 )
 
 SET(PROJECT_SOURCES
     SketchPlugin_Feature.cpp
     SketchPlugin_Plugin.cpp
     SketchPlugin_Sketch.cpp
+    SketchPlugin_SketchEntity.cpp
     SketchPlugin_Line.cpp
     SketchPlugin_Point.cpp
     SketchPlugin_Circle.cpp
@@ -42,15 +49,21 @@ SET(PROJECT_SOURCES
     SketchPlugin_ConstraintPerpendicular.cpp
     SketchPlugin_ConstraintRadius.cpp
     SketchPlugin_ConstraintRigid.cpp
+    SketchPlugin_ConstraintHorizontal.cpp
+    SketchPlugin_ConstraintVertical.cpp
+    SketchPlugin_ConstraintEqual.cpp
+    SketchPlugin_ConstraintTangent.cpp
+    SketchPlugin_ConstraintMirror.cpp
+    SketchPlugin_ConstraintFillet.cpp
     SketchPlugin_ShapeValidator.cpp
     SketchPlugin_Validators.cpp
-    SketchPlugin_ResultValidators.cpp
 )
 
 SET(PROJECT_LIBRARIES
     Config
     GeomAPI
     GeomAlgoAPI
+    GeomValidators
     ModelAPI
     SketcherPrs
     ${CAS_KERNEL}
@@ -72,6 +85,7 @@ INCLUDE_DIRECTORIES(
   ../GeomAPI
   ../GeomAlgoAPI
   ../GeomDataAPI
+  ../GeomValidators
   ../SketcherPrs
 )
 
@@ -87,5 +101,10 @@ ADD_UNIT_TESTS(TestSketchPointLine.py
                TestConstraintPerpendicular.py
                TestConstraintRadius.py
                TestConstraintRigid.py
+               TestConstraintHorizontal.py
+               TestConstraintVertical.py
+               TestConstraintEqual.py
+               TestConstraintTangent.py
+               TestConstraintMirror.py
                TestHighload.py
                TestSnowflake.py)