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