Salome HOME
Added unit-tests for SHAPERSTUDY and SMESH check
[modules/shaper.git] / src / FeaturesAPI / CMakeLists.txt
1 # Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 INCLUDE(Common)
21
22 SET(PROJECT_HEADERS
23   FeaturesAPI.h
24   FeaturesAPI_BooleanCut.h
25   FeaturesAPI_BooleanFuse.h
26   FeaturesAPI_BooleanCommon.h
27   FeaturesAPI_BooleanSmash.h
28   FeaturesAPI_BooleanFill.h
29   FeaturesAPI_Chamfer.h
30   FeaturesAPI_Extrusion.h
31   FeaturesAPI_ExtrusionBoolean.h
32   FeaturesAPI_Fillet.h
33   FeaturesAPI_Intersection.h
34   FeaturesAPI_Measurement.h
35   FeaturesAPI_MultiRotation.h
36   FeaturesAPI_MultiTranslation.h
37   FeaturesAPI_Partition.h
38   FeaturesAPI_Pipe.h
39   FeaturesAPI_Placement.h
40   FeaturesAPI_Recover.h
41   FeaturesAPI_RemoveResults.h
42   FeaturesAPI_RemoveSubShapes.h
43   FeaturesAPI_Revolution.h
44   FeaturesAPI_RevolutionBoolean.h
45   FeaturesAPI_Rotation.h
46   FeaturesAPI_Scale.h
47   FeaturesAPI_Symmetry.h
48   FeaturesAPI_Translation.h
49   FeaturesAPI_Union.h
50   FeaturesAPI_FusionFaces.h
51 )
52
53 SET(PROJECT_SOURCES
54   FeaturesAPI_BooleanCut.cpp
55   FeaturesAPI_BooleanFuse.cpp
56   FeaturesAPI_BooleanCommon.cpp
57   FeaturesAPI_BooleanSmash.cpp
58   FeaturesAPI_BooleanFill.cpp
59   FeaturesAPI_Chamfer.cpp
60   FeaturesAPI_Extrusion.cpp
61   FeaturesAPI_ExtrusionBoolean.cpp
62   FeaturesAPI_Fillet.cpp
63   FeaturesAPI_Intersection.cpp
64   FeaturesAPI_Measurement.cpp
65   FeaturesAPI_MultiRotation.cpp
66   FeaturesAPI_MultiTranslation.cpp
67   FeaturesAPI_Partition.cpp
68   FeaturesAPI_Pipe.cpp
69   FeaturesAPI_Placement.cpp
70   FeaturesAPI_Recover.cpp
71   FeaturesAPI_RemoveResults.cpp
72   FeaturesAPI_RemoveSubShapes.cpp
73   FeaturesAPI_Revolution.cpp
74   FeaturesAPI_RevolutionBoolean.cpp
75   FeaturesAPI_Rotation.cpp
76   FeaturesAPI_Scale.cpp
77   FeaturesAPI_Symmetry.cpp
78   FeaturesAPI_Translation.cpp
79   FeaturesAPI_Union.cpp
80   FeaturesAPI_FusionFaces.cpp
81 )
82
83 SET(PROJECT_LIBRARIES
84   ModelAPI
85   ModelHighAPI
86 )
87
88 INCLUDE_DIRECTORIES(
89   ${PROJECT_SOURCE_DIR}/src/Events
90   ${PROJECT_SOURCE_DIR}/src/ModelAPI
91   ${PROJECT_SOURCE_DIR}/src/ModelHighAPI
92 )
93
94 # Plugin headers dependency
95 INCLUDE_DIRECTORIES(
96   ${PROJECT_SOURCE_DIR}/src/GeomAPI
97   ${PROJECT_SOURCE_DIR}/src/GeomAlgoAPI
98   ${PROJECT_SOURCE_DIR}/src/GeomDataAPI
99   ${PROJECT_SOURCE_DIR}/src/FeaturesPlugin
100 )
101
102 ADD_DEFINITIONS(-DFEATURESAPI_EXPORTS)
103 ADD_LIBRARY(FeaturesAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
104 TARGET_LINK_LIBRARIES(FeaturesAPI ${PROJECT_LIBRARIES})
105
106 # SWIG wrapper
107
108 INCLUDE(PythonAPI)
109
110 SET_SOURCE_FILES_PROPERTIES(FeaturesAPI.i PROPERTIES CPLUSPLUS ON)
111 SET_SOURCE_FILES_PROPERTIES(FeaturesAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
112
113 SET(SWIG_LINK_LIBRARIES
114   FeaturesAPI
115   ModelHighAPI
116   ModelAPI
117   ${PYTHON_LIBRARIES}
118 )
119 SET(CMAKE_SWIG_FLAGS -threads -w325,321,302,362,322,383,403)
120
121 SET(SWIG_MODULE_FeaturesAPI_EXTRA_DEPS ${SWIG_MODULE_FeaturesAPI_EXTRA_DEPS}
122   ${PROJECT_SOURCE_DIR}/src/ModelHighAPI/ModelHighAPI.i
123   doxyhelp.i
124   ${PROJECT_HEADERS}
125 )
126
127 IF(${CMAKE_VERSION} VERSION_GREATER "3.8.0")
128   SWIG_ADD_LIBRARY(FeaturesAPI LANGUAGE python SOURCES FeaturesAPI.i ${PROJECT_HEADERS})
129 ELSE()
130   SWIG_ADD_MODULE(FeaturesAPI python FeaturesAPI.i ${PROJECT_HEADERS})
131 ENDIF()
132 SWIG_LINK_LIBRARIES(FeaturesAPI ${SWIG_LINK_LIBRARIES})
133
134 IF(WIN32)
135   SET_TARGET_PROPERTIES(_FeaturesAPI PROPERTIES DEBUG_OUTPUT_NAME _FeaturesAPI_d)
136 ENDIF(WIN32)
137
138 INSTALL(TARGETS _FeaturesAPI DESTINATION ${SHAPER_INSTALL_SWIG})
139 INSTALL(TARGETS FeaturesAPI DESTINATION ${SHAPER_INSTALL_BIN})
140 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/FeaturesAPI.py DESTINATION ${SHAPER_INSTALL_SWIG})