Salome HOME
Add tools
[modules/shaper.git] / src / SketchPlugin / CMakeLists.txt
index 2984571336bda4ddd527db36df7b537f8d02b198..508a7404906528307802a8a2607e85752352078c 100644 (file)
@@ -28,9 +28,12 @@ SET(PROJECT_HEADERS
     SketchPlugin_ConstraintTangent.h
     SketchPlugin_ConstraintMirror.h
     SketchPlugin_ConstraintFillet.h
-    SketchPlugin_ShapeValidator.h
+    SketchPlugin_ConstraintAngle.h
+    SketchPlugin_MultiRotation.h
+    SketchPlugin_MultiTranslation.h
+    SketchPlugin_ExternalValidator.h
     SketchPlugin_Validators.h
-    SketchPlugin_ResultValidators.h 
+    SketchPlugin_Tools.h
 )
 
 SET(PROJECT_SOURCES
@@ -42,6 +45,7 @@ SET(PROJECT_SOURCES
     SketchPlugin_Point.cpp
     SketchPlugin_Circle.cpp
     SketchPlugin_Arc.cpp
+    SketchPlugin_Constraint.cpp
     SketchPlugin_ConstraintBase.cpp
     SketchPlugin_ConstraintCoincidence.cpp
     SketchPlugin_ConstraintDistance.cpp
@@ -56,19 +60,22 @@ SET(PROJECT_SOURCES
     SketchPlugin_ConstraintTangent.cpp
     SketchPlugin_ConstraintMirror.cpp
     SketchPlugin_ConstraintFillet.cpp
-    SketchPlugin_ShapeValidator.cpp
+    SketchPlugin_ConstraintAngle.cpp
+    SketchPlugin_MultiRotation.cpp
+    SketchPlugin_MultiTranslation.cpp
+    SketchPlugin_ExternalValidator.cpp
     SketchPlugin_Validators.cpp
-    SketchPlugin_ResultValidators.cpp
+    SketchPlugin_Tools.cpp
 )
 
 SET(PROJECT_LIBRARIES
     Config
     GeomAPI
     GeomAlgoAPI
+    GeomValidators
     ModelAPI
     SketcherPrs
-    ${CAS_KERNEL}
-    ${CAS_SHAPE}
+    GeomDataAPI
 )
 
 SET(XML_RESOURCES
@@ -86,6 +93,7 @@ INCLUDE_DIRECTORIES(
   ../GeomAPI
   ../GeomAlgoAPI
   ../GeomDataAPI
+  ../GeomValidators
   ../SketcherPrs
 )
 
@@ -106,5 +114,9 @@ ADD_UNIT_TESTS(TestSketchPointLine.py
                TestConstraintEqual.py
                TestConstraintTangent.py
                TestConstraintMirror.py
+               TestConstraintAngle.py
+               TestMultiRotation.py
+               TestMultiTranslation.py
+               TestFillet.py
                TestHighload.py
                TestSnowflake.py)