Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchAPI / CMakeLists.txt
index 389d004e71fd90e3be202f73362cfd83f71cfbc4..2d07f9a20071eed86b73339d4edb5dfb5dec770b 100644 (file)
@@ -1,65 +1,81 @@
-## Copyright (C) 2014-2017  CEA/DEN, EDF R&D
-##
-## This library is free software; you can redistribute it and/or
-## modify it under the terms of the GNU Lesser General Public
-## License as published by the Free Software Foundation; either
-## version 2.1 of the License, or (at your option) any later version.
-##
-## This library is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-## Lesser General Public License for more details.
-##
-## You should have received a copy of the GNU Lesser General Public
-## License along with this library; if not, write to the Free Software
-## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-##
-## See http:##www.salome-platform.org/ or
-## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
-##
+# Copyright (C) 2014-2023  CEA, EDF
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 
 INCLUDE(Common)
 
 SET(PROJECT_HEADERS
   SketchAPI.h
   SketchAPI_Arc.h
+  SketchAPI_BSpline.h
   SketchAPI_Circle.h
   SketchAPI_Constraint.h
+  SketchAPI_ConstraintAngle.h
+  SketchAPI_Ellipse.h
+  SketchAPI_EllipticArc.h
   SketchAPI_IntersectionPoint.h
   SketchAPI_Line.h
   SketchAPI_MacroArc.h
   SketchAPI_MacroCircle.h
+  SketchAPI_MacroEllipse.h
+  SketchAPI_MacroEllipticArc.h
   SketchAPI_Mirror.h
-  SketchAPI_Sketch.h
-  SketchAPI_SketchEntity.h
+  SketchAPI_Offset.h
   SketchAPI_Point.h
   SketchAPI_Projection.h
   SketchAPI_Rectangle.h
   SketchAPI_Rotation.h
+  SketchAPI_Sketch.h
+  SketchAPI_SketchEntity.h
   SketchAPI_Translation.h
 )
 
 SET(PROJECT_SOURCES
   SketchAPI_Arc.cpp
+  SketchAPI_BSpline.cpp
   SketchAPI_Circle.cpp
   SketchAPI_Constraint.cpp
+  SketchAPI_ConstraintAngle.cpp
+  SketchAPI_Ellipse.cpp
+  SketchAPI_EllipticArc.cpp
   SketchAPI_IntersectionPoint.cpp
   SketchAPI_Line.cpp
   SketchAPI_MacroArc.cpp
   SketchAPI_MacroCircle.cpp
+  SketchAPI_MacroEllipse.cpp
+  SketchAPI_MacroEllipticArc.cpp
   SketchAPI_Mirror.cpp
-  SketchAPI_Sketch.cpp
-  SketchAPI_SketchEntity.cpp
+  SketchAPI_Offset.cpp
   SketchAPI_Point.cpp
   SketchAPI_Projection.cpp
   SketchAPI_Rectangle.cpp
   SketchAPI_Rotation.cpp
+  SketchAPI_Sketch.cpp
+  SketchAPI_SketchEntity.cpp
   SketchAPI_Translation.cpp
 )
 
 SET(PROJECT_LIBRARIES
+  GeomAlgoAPI
+  Locale
   ModelAPI
   ModelHighAPI
+  SketcherPrs
 )
 
 INCLUDE_DIRECTORIES(
@@ -73,9 +89,10 @@ INCLUDE_DIRECTORIES(
 
 # Plugin headers dependency
 INCLUDE_DIRECTORIES(
-  # TODO(spo): modify ConstructionPlugin headers to remove dependency on GeomAPI headers
   ${PROJECT_SOURCE_DIR}/src/Config
+  ${PROJECT_SOURCE_DIR}/src/Locale
   ${PROJECT_SOURCE_DIR}/src/GeomAPI
+  ${PROJECT_SOURCE_DIR}/src/GeomAlgoAPI
   ${PROJECT_SOURCE_DIR}/src/SketchPlugin
 )
 
@@ -88,6 +105,8 @@ TARGET_LINK_LIBRARIES(SketchAPI ${PROJECT_LIBRARIES})
 
 INCLUDE(PythonAPI)
 
+SET(CMAKE_SWIG_FLAGS -threads -w325,321,302,362,322,383,403)
+
 SET_SOURCE_FILES_PROPERTIES(SketchAPI.i PROPERTIES CPLUSPLUS ON)
 SET_SOURCE_FILES_PROPERTIES(SketchAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
 
@@ -124,8 +143,23 @@ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/SketchAPI.py DESTINATION ${SHAPER_INST
 
 INCLUDE(UnitTest)
 
-ADD_UNIT_TESTS(
-  TestSketch.py
-)
-
-# ADD_SUBDIRECTORY (Test)
+include(tests.set)
+
+ADD_UNIT_TESTS(${TEST_NAMES})
+
+if(${HAVE_SALOME})
+  enable_testing()
+  set(TEST_INSTALL_DIRECTORY "${SALOME_SHAPER_INSTALL_TESTS}/SketchAPI")
+  
+  install(FILES CTestTestfileInstall.cmake
+  DESTINATION ${TEST_INSTALL_DIRECTORY}
+  RENAME CTestTestfile.cmake)
+  install(FILES tests.set DESTINATION ${TEST_INSTALL_DIRECTORY})
+  
+  set(TMP_TESTS_NAMES)
+  foreach(tfile ${TEST_NAMES})
+    list(APPEND TMP_TESTS_NAMES "Test/${tfile}")
+  endforeach(tfile ${TEST_NAMES})
+  
+  install(FILES ${TMP_TESTS_NAMES} DESTINATION ${TEST_INSTALL_DIRECTORY})
+endif(${HAVE_SALOME})