Salome HOME
d580a700f8bf7a5a652fb5e342adad432ba81a11
[modules/shaper.git] / src / ExchangePlugin / 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/ModelHighAPI
27                     ${PROJECT_SOURCE_DIR}/src/GeomAPI
28                     ${PROJECT_SOURCE_DIR}/src/GeomAlgoAPI
29                     ${PROJECT_SOURCE_DIR}/src/XAO
30                     ${PROJECT_SOURCE_DIR}/src/ConstructionPlugin
31                     ${PROJECT_SOURCE_DIR}/src/PartSetPlugin
32 )
33
34 SET(PROJECT_HEADERS
35     ExchangePlugin.h
36     ExchangePlugin_Plugin.h
37     ExchangePlugin_ImportFeature.h
38     ExchangePlugin_ExportFeature.h
39     ExchangePlugin_Validators.h
40     ExchangePlugin_Tools.h
41     ExchangePlugin_Dump.h
42     ExchangePlugin_ImportPart.h
43     ExchangePlugin_ExportPart.h
44 )
45
46 SET(PROJECT_SOURCES
47     ExchangePlugin_Plugin.cpp
48     ExchangePlugin_ImportFeature.cpp
49     ExchangePlugin_ExportFeature.cpp
50     ExchangePlugin_Validators.cpp
51     ExchangePlugin_Tools.cpp
52     ExchangePlugin_Dump.cpp
53     ExchangePlugin_ImportPart.cpp
54     ExchangePlugin_ExportPart.cpp
55 )
56
57 SET(XML_RESOURCES
58     export_widget.xml
59     plugin-Exchange.xml
60 )
61
62 SET(TEXT_RESOURCES
63     ExchangePlugin_msg_en.ts
64     ExchangePlugin_msg_fr.ts
65 )
66
67 SET(PROJECT_LIBRARIES
68     Events
69     Config
70     ModelAPI
71     ModelHighAPI
72     GeomAPI
73     GeomAlgoAPI
74     XAOShaper
75 )
76 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
77
78 ADD_DEFINITIONS(-DEXCHANGEPLUGIN_EXPORTS)
79 ADD_LIBRARY(ExchangePlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
80
81 TARGET_LINK_LIBRARIES(ExchangePlugin ${PROJECT_LIBRARIES})
82
83 INSTALL(TARGETS ExchangePlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
84 INSTALL(FILES ${XML_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
85 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Exchange)
86 INSTALL(FILES ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
87
88 ADD_UNIT_TESTS(
89   TestImport.py
90   TestExport.py
91   Test2290.py
92   Test2459.py
93   TestExportToXAOWithFields.py
94   TestExportToXAOWithGroupNotUpdated.py
95   TestExport_FiniteValidator.py
96   TestExportPart_Failure_1.py
97   TestExportPart_Failure_2.py
98   TestExportPart_Failure_3.py
99   TestExportPart_FullPartSet.py
100   TestExportPart_FullPart_1.py
101   TestExportPart_FullPart_2.py
102   TestExportPart_PartSet.py
103   TestExportPart_Results_1.py
104   TestExportPart_Results_2.py
105   TestExportPart_Results_3.py
106   TestExportPart_Results_4.py
107   TestExportPart_Results_5.py
108   TestExportPart_Results_6.py
109   TestExportPart_Results_7.py
110   TestExportPart_Results_8.py
111   TestImportPart_AfterCurrent_1.py
112   TestImportPart_AfterCurrent_2.py
113   TestImportPart_AfterLast_1.py
114   TestImportPart_AfterLast_2.py
115   TestImportPart_AfterLast_3.py
116   TestImportPart_AfterLast_4.py
117   TestImportPart_AfterLast_5.py
118   TestImportPart_AfterLast_6.py
119   TestImportPart_Construction_1.py
120   TestImportPart_Construction_2.py
121   TestImportPart_Construction_3.py
122   TestImportPart_Construction_4.py
123   TestImportPart_Multiple.py
124   TestImportPart_ToEmptyPart.py
125   TestImportPart_ToEmptyPartSet.py
126 )