Salome HOME
Fix for the issue #2836 : Test2409.py is not tested and not up-to-date
[modules/shaper.git] / src / BuildPlugin / CMakeLists.txt
1 ## Copyright (C) 2014-2017  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
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 ##
20
21 INCLUDE(Common)
22 INCLUDE(UnitTest)
23
24 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/Events
25                     ${PROJECT_SOURCE_DIR}/src/Config
26                     ${PROJECT_SOURCE_DIR}/src/ModelAPI
27                     ${PROJECT_SOURCE_DIR}/src/GeomAPI
28                     ${PROJECT_SOURCE_DIR}/src/GeomAlgoAPI
29                     ${PROJECT_SOURCE_DIR}/src/GeomValidators
30 )
31
32 SET(PROJECT_HEADERS
33     BuildPlugin.h
34     BuildPlugin_Plugin.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_Vertex.cpp
53     BuildPlugin_Edge.cpp
54     BuildPlugin_Wire.cpp
55     BuildPlugin_Polyline.cpp
56     BuildPlugin_Interpolation.cpp
57     BuildPlugin_Face.cpp
58     BuildPlugin_Shell.cpp
59     BuildPlugin_Solid.cpp
60     BuildPlugin_CompSolid.cpp
61     BuildPlugin_Compound.cpp
62     BuildPlugin_SubShapes.cpp
63     BuildPlugin_Filling.cpp
64     BuildPlugin_Validators.cpp
65 )
66
67 SET(XML_RESOURCES
68     plugin-Build.xml
69     vertex_widget.xml
70     edge_widget.xml
71     wire_widget.xml
72     polyline_widget.xml
73     interpolation_widget.xml
74     face_widget.xml
75     shell_widget.xml
76     solid_widget.xml
77     compsolid_widget.xml
78     compound_widget.xml
79     subshapes_widget.xml
80     filling_widget.xml
81 )
82
83 SET(TEXT_RESOURCES
84     BuildPlugin_msg_en.ts
85 )
86
87 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
88
89 SET(PROJECT_LIBRARIES
90     Events
91     Config
92     ModelAPI
93     GeomAPI
94     GeomAlgoAPI
95     GeomValidators
96 )
97
98 ADD_DEFINITIONS(-DBUILDPLUGIN_EXPORTS)
99 ADD_LIBRARY(BuildPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
100
101 TARGET_LINK_LIBRARIES(BuildPlugin ${PROJECT_LIBRARIES})
102
103 INSTALL(TARGETS BuildPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
104 INSTALL(FILES ${XML_RESOURCES} ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
105 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Build)
106
107 ADD_UNIT_TESTS(TestVertex.py
108                TestVertex_ErrorMsg.py
109                TestEdge.py
110                TestEdge_ErrorMsg.py
111                TestWire.py
112                TestWire_ErrorMsg.py
113                TestPolyline.py
114                TestInterpolation.py
115                TestFace.py
116                TestFace_ErrorMsg.py
117                TestShell.py
118                TestSolid.py
119                TestSolid_ErrorMsg.py
120                TestCompSolid.py
121                TestCompound.py
122                TestCompound_ErrorMsg.py
123                TestSubShapes.py
124                TestSubShapes_ErrorMsg.py
125                TestFilling.py
126                TestFilling_ByEdges.py
127                TestFilling_ByWires.py
128                TestFilling_Mixed.py
129                TestFilling_ErrorMsg.py
130                Test1920.py
131                Test2398.py
132                Test2409.py
133                Test2415.py
134                Test2439.py
135                Test2454.py
136 )