Salome HOME
52332c64edd7cc65f6b91da2f47139293df767d1
[plugins/dxfplugin.git] / src / CMakeLists.txt
1 # Copyright (C) 2014-2015  OPEN CASCADE
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 IF(SALOME_BUILD_GUI)
21   INCLUDE(UseQt4Ext)
22   INCLUDE(${QT_USE_FILE})
23 ENDIF()
24
25 # --- options ---
26
27 # additional include directories
28 INCLUDE_DIRECTORIES(
29   ${CAS_INCLUDE_DIRS}
30   ${DXF_INCLUDE_DIRS}
31   ${KERNEL_INCLUDE_DIRS}
32   ${PROJECT_BINARY_DIR}
33   ${PROJECT_BINARY_DIR}/idl
34   )
35   
36 IF(SALOME_BUILD_GUI)
37   INCLUDE_DIRECTORIES(
38     ${QT_INCLUDE_DIRS}
39     ${GUI_INCLUDE_DIRS}
40     ${GEOM_INCLUDE_DIRS}
41     )
42 ENDIF()
43
44 # additional preprocessor / compiler flags
45 ADD_DEFINITIONS(
46   ${CAS_DEFINITIONS}
47   )
48   
49 IF(SALOME_BUILD_GUI)
50 ADD_DEFINITIONS(
51   ${QT_DEFINITIONS}
52   )
53 ENDIF()
54
55 # libraries to link to
56 SET(_link_engine_LIBRARIES
57   ${CAS_TKXSBase}
58   ${DXF_LIBRARIES}
59   ${KERNEL_SALOMEBasics}
60   ${KERNEL_SALOMELocalTrace}
61   ${KERNEL_OpUtil}
62   ${GEOM_SalomeIDLGEOM}
63   ${GEOM_GEOMEngine}
64   ${GEOM_GEOMImpl}
65   ${GEOM_GEOMClient}
66   SalomeIDLDXFPlugin
67   )
68   
69 IF(SALOME_BUILD_GUI)
70   SET(_link_gui_LIBRARIES
71     SalomeIDLDXFPlugin
72     ${GEOM_GEOMObject}
73     ${GEOM_GEOMBase}
74     ${GEOM_GEOMBase}
75     )
76 ENDIF()
77
78
79 # --- headers ---
80
81 SET(DXFPluginEngine_HEADERS
82   DXFPlugin_IOperations_i.hh
83   DXFPlugin_Engine.hxx
84   DXFPlugin_OperationsCreator.hxx
85   DXFPlugin_IOperations.hxx
86   DXFPlugin_IExport.hxx 
87   DXFPlugin_IImport.hxx
88   DXFPlugin_ImportDriver.hxx 
89   DXFPlugin_ExportDriver.hxx
90   DXFPlugin_IECallBack.hxx
91   )
92
93 IF(SALOME_BUILD_GUI)  
94   # header files / to be processed by moc
95   SET(_moc_HEADERS
96     DXFPlugin_GUI.h
97     )
98 ENDIF()
99
100 # --- sources ---
101
102 IF(SALOME_BUILD_GUI)
103   # sources / moc wrappings
104   QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
105
106   SET(DXFPluginGUI_SOURCES
107     DXFPlugin_GUI.cxx
108     ${_moc_SOURCES}
109     )
110 ENDIF()
111   
112 SET(DXFPluginEngine_SOURCES
113   DXFPlugin_Engine.cxx
114   DXFPlugin_OperationsCreator.cxx
115   DXFPlugin_IOperations_i.cc
116   DXFPlugin_IOperations.cxx
117   DXFPlugin_ExportDriver.cxx
118   DXFPlugin_ImportDriver.cxx
119   DXFPlugin_IECallBack.cxx
120   )
121   
122 # resource files / to be processed by lrelease
123 SET(DXFPlugin_RESOURCES
124   resources/DXFPlugin_msg_en.ts
125   resources/DXFPlugin_msg_fr.ts
126   resources/DXFPlugin_msg_ja.ts
127   )
128
129 # DXF plugin scripts
130 SET(_python_DXF_SCRIPTS
131   DXFPluginBuilder.py
132   __init__.py
133 )
134
135 # --- rules ---
136
137 # install Engine library
138 ADD_LIBRARY(DXFPluginEngine ${DXFPluginEngine_SOURCES})
139 TARGET_LINK_LIBRARIES(DXFPluginEngine ${_link_engine_LIBRARIES})
140 INSTALL(TARGETS DXFPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
141
142 # install GUI library
143 IF(SALOME_BUILD_GUI)
144   ADD_LIBRARY(DXFPluginGUI ${DXFPluginGUI_SOURCES})
145   TARGET_LINK_LIBRARIES(DXFPluginGUI ${_link_gui_LIBRARIES})
146   INSTALL(TARGETS DXFPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
147   # install resources
148   QT4_INSTALL_TS_RESOURCES("${DXFPlugin_RESOURCES}" "${SALOME_DXFPLUGIN_INSTALL_RES_DATA}")
149 ENDIF()
150
151 # install headers
152 INSTALL(FILES ${DXFPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
153
154 # install python scripts
155 SALOME_INSTALL_SCRIPTS("${_python_DXF_SCRIPTS}" ${SALOME_INSTALL_PYTHON}/salome/DXFPlugin DEF_PERMS)
156
157 # configure license file
158 CONFIGURE_FILE(DXFPlugin_license.h.in DXFPlugin_license.h)