Salome HOME
CMake porting
[modules/geom.git] / src / PrimitiveGUI / CMakeLists.txt
1 # Copyright (C) 2012-2013  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.
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(${QT_USE_FILE})
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDE_DIRS}
27   ${VTK_INCLUDE_DIRS}
28   ${OMNIORB_INCLUDE_DIR}
29   ${CAS_INCLUDE_DIRS}
30   ${KERNEL_INCLUDE_DIRS}
31   ${GUI_INCLUDE_DIRS}
32   ${PROJECT_BINARY_DIR}/idl
33   ${PROJECT_BINARY_DIR}
34   ${PROJECT_SOURCE_DIR}/src/OBJECT
35   ${PROJECT_SOURCE_DIR}/src/GEOMClient
36   ${PROJECT_SOURCE_DIR}/src/GEOMImpl
37   ${PROJECT_SOURCE_DIR}/src/GEOMGUI
38   ${PROJECT_SOURCE_DIR}/src/GEOMBase
39   ${PROJECT_SOURCE_DIR}/src/DlgRef
40   ${PROJECT_BINARY_DIR}/src/DlgRef
41   ${CMAKE_CURRENT_SOURCE_DIR}
42   )
43
44 # additional preprocessor / compiler flags
45 ADD_DEFINITIONS(
46   ${CAS_DEFINITIONS}
47   ${OMNIORB_DEFINITIONS}
48   ${QT_DEFINITIONS}
49   )
50
51 # libraries to link to
52 SET(_link_LIBRARIES
53   GEOMObject
54   GEOMClient
55   GEOMImpl
56   GEOMBase
57   GEOM
58   DlgRef
59   )
60
61 # --- headers ---
62
63 SET(PrimitiveGUI_HEADERS
64   PrimitiveGUI.h
65   PrimitiveGUI_BoxDlg.h
66   PrimitiveGUI_CylinderDlg.h
67   PrimitiveGUI_SphereDlg.h
68   PrimitiveGUI_TorusDlg.h
69   PrimitiveGUI_ConeDlg.h
70   )
71
72 # header files / to be processed by moc
73 SET(_moc_HEADERS
74   PrimitiveGUI_BoxDlg.h
75   PrimitiveGUI_CylinderDlg.h
76   PrimitiveGUI_SphereDlg.h
77   PrimitiveGUI_TorusDlg.h
78   PrimitiveGUI_ConeDlg.h
79   PrimitiveGUI_FaceDlg.h
80   PrimitiveGUI_DiskDlg.h
81   )
82
83 # --- sources ---
84
85 # sources / moc wrappings
86 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
87
88 SET(PrimitiveGUI_SOURCES
89   PrimitiveGUI.cxx
90   PrimitiveGUI_BoxDlg.cxx
91   PrimitiveGUI_CylinderDlg.cxx
92   PrimitiveGUI_SphereDlg.cxx
93   PrimitiveGUI_TorusDlg.cxx
94   PrimitiveGUI_ConeDlg.cxx
95   PrimitiveGUI_FaceDlg.cxx
96   PrimitiveGUI_DiskDlg.cxx
97   ${_moc_SOURCES}
98   )
99
100 # --- rules ---
101
102 ADD_LIBRARY(PrimitiveGUI ${PrimitiveGUI_SOURCES})
103 TARGET_LINK_LIBRARIES(PrimitiveGUI ${_link_LIBRARIES})
104 INSTALL(TARGETS PrimitiveGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
105