Salome HOME
Merge remote-tracking branch 'remotes/origin/CEA_2020_ImportSTEP'
[modules/shaper.git] / src / BuildPlugin / CMakeLists.txt
1 # Copyright (C) 2014-2020  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 INCLUDE(UnitTest)
22
23 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/Events
24                     ${PROJECT_SOURCE_DIR}/src/Config
25                     ${PROJECT_SOURCE_DIR}/src/ModelAPI
26                     ${PROJECT_SOURCE_DIR}/src/GeomAPI
27                     ${PROJECT_SOURCE_DIR}/src/GeomAlgoAPI
28                     ${PROJECT_SOURCE_DIR}/src/GeomDataAPI
29                     ${PROJECT_SOURCE_DIR}/src/GeomValidators
30                     ${PROJECT_SOURCE_DIR}/src/SketchPlugin
31 )
32
33 SET(PROJECT_HEADERS
34     BuildPlugin.h
35     BuildPlugin_Plugin.h
36     BuildPlugin_Shape.h
37     BuildPlugin_Vertex.h
38     BuildPlugin_Edge.h
39     BuildPlugin_Wire.h
40     BuildPlugin_Polyline.h
41     BuildPlugin_Interpolation.h
42     BuildPlugin_Face.h
43     BuildPlugin_Shell.h
44     BuildPlugin_Solid.h
45     BuildPlugin_CompSolid.h
46     BuildPlugin_Compound.h
47     BuildPlugin_SubShapes.h
48     BuildPlugin_Filling.h
49     BuildPlugin_Validators.h
50 )
51
52 SET(PROJECT_SOURCES
53     BuildPlugin_Plugin.cpp
54     BuildPlugin_Shape.cpp
55     BuildPlugin_Vertex.cpp
56     BuildPlugin_Edge.cpp
57     BuildPlugin_Wire.cpp
58     BuildPlugin_Polyline.cpp
59     BuildPlugin_Interpolation.cpp
60     BuildPlugin_Face.cpp
61     BuildPlugin_Shell.cpp
62     BuildPlugin_Solid.cpp
63     BuildPlugin_CompSolid.cpp
64     BuildPlugin_Compound.cpp
65     BuildPlugin_SubShapes.cpp
66     BuildPlugin_Filling.cpp
67     BuildPlugin_Validators.cpp
68 )
69
70 SET(XML_RESOURCES
71     plugin-Build.xml
72     vertex_widget.xml
73     edge_widget.xml
74     wire_widget.xml
75     polyline_widget.xml
76     interpolation_widget.xml
77     face_widget.xml
78     shell_widget.xml
79     solid_widget.xml
80     compsolid_widget.xml
81     compound_widget.xml
82     subshapes_widget.xml
83     filling_widget.xml
84 )
85
86 SET(TEXT_RESOURCES
87     BuildPlugin_msg_en.ts
88     BuildPlugin_msg_fr.ts
89 )
90
91 SOURCE_GROUP ("XML Files" FILES ${XML_RESOURCES})
92 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
93
94 SET(PROJECT_LIBRARIES
95     Events
96     Config
97     ModelAPI
98     GeomAPI
99     GeomAlgoAPI
100     GeomValidators
101 )
102
103 ADD_DEFINITIONS(-DBUILDPLUGIN_EXPORTS)
104 ADD_LIBRARY(BuildPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
105
106 TARGET_LINK_LIBRARIES(BuildPlugin ${PROJECT_LIBRARIES})
107
108 INSTALL(TARGETS BuildPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
109 INSTALL(FILES ${XML_RESOURCES} ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
110 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Build)
111
112 ADD_UNIT_TESTS(TestVertex.py
113                TestVertex_ErrorMsg.py
114                TestVertex_WholeSketch_1.py
115                TestVertex_WholeSketch_2.py
116                TestEdge.py
117                TestEdge_ByPoints.py
118                TestEdge_ErrorMsg.py
119                TestEdge_WholeSketch_1.py
120                TestEdge_WholeSketch_2.py
121                TestEdge_WholeSketch_3.py
122                TestEdge_WholeSketch_4.py
123                TestWire.py
124                TestWire_ErrorMsg.py
125                TestWire_WholeSketch_1.py
126                TestWire_WholeSketch_2.py
127                TestWire_WholeSketch_3.py
128                TestWire_WholeSketch_4.py
129                TestWire_WholeSketch_5.py
130                TestWire_WholeSketch_6.py
131                TestPolyline.py
132                TestInterpolation.py
133                TestFace.py
134                TestFace_ErrorMsg.py
135                TestFace_WholeSketch_1.py
136                TestFace_WholeSketch_2.py
137                TestShell.py
138                TestShell_WholeSketch_1.py
139                TestShell_WholeSketch_2.py
140                TestSolid.py
141                TestSolid_ErrorMsg.py
142                TestCompSolid.py
143                TestCompound.py
144                TestCompound_ErrorMsg.py
145                TestCompound_History.py
146                TestSubShapes.py
147                TestSubShapes_ErrorMsg.py
148                TestFilling.py
149                TestFilling_ByEdges.py
150                TestFilling_ByWires.py
151                TestFilling_Mixed.py
152                TestFilling_ErrorMsg.py
153                Test1920.py
154                Test2398.py
155                Test2409.py
156                Test2415.py
157                Test2439.py
158                Test2454.py
159                Test3125.py
160                Test3271.py
161                Test19056.py
162                Test20469.py
163 )