]> SALOME platform Git repositories - modules/geom.git/blob - src/STLPlugin/CMakeLists.txt
Salome HOME
0b9420c3fde1254d9c243c7362d0879b1821d43c
[modules/geom.git] / src / STLPlugin / CMakeLists.txt
1 # Copyright (C) 2014  CEA/DEN, EDF R&D, 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   ${KERNEL_INCLUDE_DIRS}
31   ${PROJECT_BINARY_DIR}/idl
32   ${PROJECT_SOURCE_DIR}/src/GEOMAlgo
33   ${PROJECT_SOURCE_DIR}/src/GEOM
34   ${PROJECT_SOURCE_DIR}/src/GEOMImpl
35   ${PROJECT_SOURCE_DIR}/src/GEOM_I
36   ${PROJECT_SOURCE_DIR}/src/GEOMClient
37   ${PROJECT_SOURCE_DIR}/src/GEOMUtils
38   )
39   
40 IF(SALOME_BUILD_GUI)
41   INCLUDE_DIRECTORIES(
42     ${QT_INCLUDE_DIRS}
43     ${GUI_INCLUDE_DIRS}
44     ${PROJECT_SOURCE_DIR}/src/OBJECT
45     ${PROJECT_SOURCE_DIR}/src/GEOMGUI
46     ${PROJECT_SOURCE_DIR}/src/GEOMBase
47     )
48 ENDIF()
49
50 # additional preprocessor / compiler flags
51 ADD_DEFINITIONS(
52   ${CAS_DEFINITIONS}
53   )
54   
55 IF(SALOME_BUILD_GUI)
56 ADD_DEFINITIONS(
57   ${QT_DEFINITIONS}
58   )
59 ENDIF()
60
61 # libraries to link to
62 SET(_link_engine_LIBRARIES
63   ${CAS_TKSTL}
64   ${KERNEL_SALOMELocalTrace}
65   ${KERNEL_OpUtil}
66   SalomeIDLGEOM
67   SalomeIDLSTLPlugin
68   GEOMEngine
69   GEOMClient
70   )
71   
72 IF(SALOME_BUILD_GUI)
73   SET(_link_gui_LIBRARIES
74     SalomeIDLSTLPlugin
75     GEOMObject
76     GEOM
77     GEOMBase
78     )
79 ENDIF()
80
81
82 # --- headers ---
83
84 SET(STLPluginEngine_HEADERS
85   STLPlugin_IOperations_i.hh
86   STLPlugin_Engine.hxx
87   STLPlugin_OperationsCreator.hxx
88   STLPlugin_IOperations.hxx
89   STLPlugin_IExport.hxx 
90   STLPlugin_IImport.hxx
91   STLPlugin_ImportDriver.hxx 
92   STLPlugin_ExportDriver.hxx
93   STLPlugin_IECallBack.hxx
94   )
95
96 IF(SALOME_BUILD_GUI)  
97   # header files / to be processed by moc
98   SET(_moc_HEADERS
99     STLPlugin_GUI.h
100     STLPlugin_ExportDlg.h
101     )
102 ENDIF()
103
104 # --- sources ---
105
106 IF(SALOME_BUILD_GUI)
107   # sources / moc wrappings
108   QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
109
110   SET(STLPluginGUI_SOURCES
111     STLPlugin_GUI.cxx
112     STLPlugin_ExportDlg.cxx
113     ${_moc_SOURCES}
114     )
115 ENDIF()
116   
117 SET(STLPluginEngine_SOURCES
118   STLPlugin_Engine.cxx
119   STLPlugin_OperationsCreator.cxx
120   STLPlugin_IOperations_i.cc
121   STLPlugin_IOperations.cxx
122   STLPlugin_ExportDriver.cxx
123   STLPlugin_ImportDriver.cxx
124   STLPlugin_IECallBack.cxx
125   )
126   
127 # resource files / to be processed by lrelease
128 SET(STLPlugin_RESOURCES
129   STLPlugin_msg_en.ts
130   STLPlugin_msg_fr.ts
131   STLPlugin_msg_ja.ts
132   )
133
134 # --- rules ---
135
136 ADD_LIBRARY(STLPluginEngine ${STLPluginEngine_SOURCES})
137 TARGET_LINK_LIBRARIES(STLPluginEngine ${_link_engine_LIBRARIES})
138 INSTALL(TARGETS STLPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
139
140 IF(SALOME_BUILD_GUI)
141   ADD_LIBRARY(STLPluginGUI ${STLPluginGUI_SOURCES})
142   TARGET_LINK_LIBRARIES(STLPluginGUI ${_link_gui_LIBRARIES})
143   INSTALL(TARGETS STLPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
144   
145   QT4_INSTALL_TS_RESOURCES("${STLPlugin_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")
146 ENDIF()
147
148
149 INSTALL(FILES ${STLPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})