Salome HOME
Restore translations
[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     BuildPlugin_msg_fr.ts
87 )
88
89 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
90
91 SET(PROJECT_LIBRARIES
92     Events
93     Config
94     ModelAPI
95     GeomAPI
96     GeomAlgoAPI
97     GeomValidators
98 )
99
100 ADD_DEFINITIONS(-DBUILDPLUGIN_EXPORTS)
101 ADD_LIBRARY(BuildPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
102
103 TARGET_LINK_LIBRARIES(BuildPlugin ${PROJECT_LIBRARIES})
104
105 INSTALL(TARGETS BuildPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
106 INSTALL(FILES ${XML_RESOURCES} ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
107 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Build)
108
109 ADD_UNIT_TESTS(TestVertex.py
110                TestVertex_ErrorMsg.py
111                TestEdge.py
112                TestEdge_ByPoints.py
113                TestEdge_ErrorMsg.py
114                TestWire.py
115                TestWire_ErrorMsg.py
116                TestPolyline.py
117                TestInterpolation.py
118                TestFace.py
119                TestFace_ErrorMsg.py
120                TestShell.py
121                TestSolid.py
122                TestSolid_ErrorMsg.py
123                TestCompSolid.py
124                TestCompound.py
125                TestCompound_ErrorMsg.py
126                TestCompound_History.py
127                TestSubShapes.py
128                TestSubShapes_ErrorMsg.py
129                TestFilling.py
130                TestFilling_ByEdges.py
131                TestFilling_ByWires.py
132                TestFilling_Mixed.py
133                TestFilling_ErrorMsg.py
134                Test1920.py
135                Test2398.py
136                Test2409.py
137                Test2415.py
138                Test2439.py
139                Test2454.py
140 )