Salome HOME
Improve the code coverage level
[modules/shaper.git] / src / BuildPlugin / 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 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/GeomValidators
29 )
30
31 SET(PROJECT_HEADERS
32     BuildPlugin.h
33     BuildPlugin_Plugin.h
34     BuildPlugin_Shape.h
35     BuildPlugin_Vertex.h
36     BuildPlugin_Edge.h
37     BuildPlugin_Wire.h
38     BuildPlugin_Polyline.h
39     BuildPlugin_Interpolation.h
40     BuildPlugin_Face.h
41     BuildPlugin_Shell.h
42     BuildPlugin_Solid.h
43     BuildPlugin_CompSolid.h
44     BuildPlugin_Compound.h
45     BuildPlugin_SubShapes.h
46     BuildPlugin_Filling.h
47     BuildPlugin_Validators.h
48 )
49
50 SET(PROJECT_SOURCES
51     BuildPlugin_Plugin.cpp
52     BuildPlugin_Shape.cpp
53     BuildPlugin_Vertex.cpp
54     BuildPlugin_Edge.cpp
55     BuildPlugin_Wire.cpp
56     BuildPlugin_Polyline.cpp
57     BuildPlugin_Interpolation.cpp
58     BuildPlugin_Face.cpp
59     BuildPlugin_Shell.cpp
60     BuildPlugin_Solid.cpp
61     BuildPlugin_CompSolid.cpp
62     BuildPlugin_Compound.cpp
63     BuildPlugin_SubShapes.cpp
64     BuildPlugin_Filling.cpp
65     BuildPlugin_Validators.cpp
66 )
67
68 SET(XML_RESOURCES
69     plugin-Build.xml
70     vertex_widget.xml
71     edge_widget.xml
72     wire_widget.xml
73     polyline_widget.xml
74     interpolation_widget.xml
75     face_widget.xml
76     shell_widget.xml
77     solid_widget.xml
78     compsolid_widget.xml
79     compound_widget.xml
80     subshapes_widget.xml
81     filling_widget.xml
82 )
83
84 SET(TEXT_RESOURCES
85     BuildPlugin_msg_en.ts
86 )
87
88 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
89
90 SET(PROJECT_LIBRARIES
91     Events
92     Config
93     ModelAPI
94     GeomAPI
95     GeomAlgoAPI
96     GeomValidators
97 )
98
99 ADD_DEFINITIONS(-DBUILDPLUGIN_EXPORTS)
100 ADD_LIBRARY(BuildPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
101
102 TARGET_LINK_LIBRARIES(BuildPlugin ${PROJECT_LIBRARIES})
103
104 INSTALL(TARGETS BuildPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
105 INSTALL(FILES ${XML_RESOURCES} ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
106 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Build)
107
108 ADD_UNIT_TESTS(TestVertex.py
109                TestVertex_ErrorMsg.py
110                TestEdge.py
111                TestEdge_ErrorMsg.py
112                TestWire.py
113                TestWire_ErrorMsg.py
114                TestPolyline.py
115                TestInterpolation.py
116                TestFace.py
117                TestFace_ErrorMsg.py
118                TestShell.py
119                TestSolid.py
120                TestSolid_ErrorMsg.py
121                TestCompSolid.py
122                TestCompound.py
123                TestCompound_ErrorMsg.py
124                TestCompound_History.py
125                TestSubShapes.py
126                TestSubShapes_ErrorMsg.py
127                TestFilling.py
128                TestFilling_ByEdges.py
129                TestFilling_ByWires.py
130                TestFilling_Mixed.py
131                TestFilling_ErrorMsg.py
132                Test1920.py
133                Test2398.py
134                Test2409.py
135                Test2415.py
136                Test2439.py
137                Test2454.py
138 )