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