Salome HOME
Task 5.1.7: To be able to export a part to a file and import it into an existing...
[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 )
65
66 SET(PROJECT_LIBRARIES
67     Events
68     Config
69     ModelAPI
70     ModelHighAPI
71     GeomAPI
72     GeomAlgoAPI
73     XAOShaper
74 )
75 SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES})
76
77 ADD_DEFINITIONS(-DEXCHANGEPLUGIN_EXPORTS)
78 ADD_LIBRARY(ExchangePlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES})
79
80 TARGET_LINK_LIBRARIES(ExchangePlugin ${PROJECT_LIBRARIES})
81
82 INSTALL(TARGETS ExchangePlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES})
83 INSTALL(FILES ${XML_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
84 INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Exchange)
85 INSTALL(FILES ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES})
86
87 ADD_UNIT_TESTS(TestImport.py
88                TestExport.py
89                Test2290.py
90                Test2459.py
91                TestExportToXAOWithFields.py
92                TestExportToXAOWithGroupNotUpdated.py
93                TestExport_FiniteValidator.py
94 )