Salome HOME
CMake porting
[modules/geom.git] / src / DlgRef / 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(UseQt4Ext)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDES}
27   ${CMAKE_CURRENT_BINARY_DIR}
28   ${GUI_INCLUDE_DIRS}
29 )
30
31 # additional preprocessor / compiler flags
32 ADD_DEFINITIONS(
33   ${QT_DEFINITIONS}
34 )
35
36 # libraries to link to
37 SET(_link_LIBRARIES
38   ${QT_LIBRARIES}
39   ${GUI_SalomeApp}
40   )
41
42 # --- resources ---
43
44 # resource files / to be processed by uic
45 SET(_uic_files
46   DlgRef_1Check1Spin1Check_QTD.ui
47   DlgRef_1List1Spin1Btn_QTD.ui
48   DlgRef_1Sel1Check1List_QTD.ui
49   DlgRef_1Sel1Check1Sel_QTD.ui
50   DlgRef_1Sel1Check_QTD.ui
51   DlgRef_1Sel1Frame_QTD.ui
52   DlgRef_1Sel1List1Check3Btn_QTD.ui
53   DlgRef_1Sel1Spin1Check_QTD.ui
54   DlgRef_1Sel1Spin_QTD.ui
55   DlgRef_1Sel2Spin1View1Check_QTD.ui
56   DlgRef_1Sel2Spin_QTD.ui
57   DlgRef_1Sel3Check_QTD.ui
58   DlgRef_1Sel3Spin1Check_QTD.ui
59   DlgRef_1Sel3Spin2Check1Spin_QTD.ui
60   DlgRef_1Sel3Spin_QTD.ui
61   DlgRef_1Sel5Spin1Check_QTD.ui
62   DlgRef_1SelExt_QTD.ui
63   DlgRef_1Sel_QTD.ui
64   DlgRef_1Spin_QTD.ui
65   DlgRef_2Sel1List1Check_QTD.ui
66   DlgRef_2Sel1List2Check_QTD.ui
67   DlgRef_2Sel1List_QTD.ui
68   DlgRef_2Sel1Spin2Check_QTD.ui
69   DlgRef_2Sel1Spin3Check1Spin_QTD.ui
70   DlgRef_2Sel1SpinInt_QTD.ui
71   DlgRef_2Sel1Spin_QTD.ui
72   DlgRef_2Sel2List_QTD.ui
73   DlgRef_2Sel2Spin1Check_QTD.ui
74   DlgRef_2Sel2Spin1Push_QTD.ui
75   DlgRef_2Sel2Spin2Push_QTD.ui
76   DlgRef_2Sel2Spin3Check_QTD.ui
77   DlgRef_2Sel2Spin_QTD.ui
78   DlgRef_2Sel3Spin2Rb_QTD.ui
79   DlgRef_2Sel3Spin_QTD.ui
80   DlgRef_2SelExt_QTD.ui
81   DlgRef_2Sel_QTD.ui
82   DlgRef_2Spin_QTD.ui
83   DlgRef_3Check_QTD.ui
84   DlgRef_3Radio1Sel1Spin_QTD.ui
85   DlgRef_3Radio_QTD.ui
86   DlgRef_3Sel1Check_QTD.ui
87   DlgRef_3Sel1Spin_QTD.ui
88   DlgRef_3Sel2Check3Spin_QTD.ui
89   DlgRef_3Sel2Spin_QTD.ui
90   DlgRef_3Sel3Spin1Check_QTD.ui
91   DlgRef_3Sel3Spin2Check_QTD.ui
92   DlgRef_3Sel4Spin2Check_QTD.ui
93   DlgRef_3Sel_QTD.ui
94   DlgRef_3Spin1Check_QTD.ui
95   DlgRef_3Spin_QTD.ui
96   DlgRef_4Sel1List1Check_QTD.ui
97   DlgRef_4Sel1List_QTD.ui
98   DlgRef_4Sel1Spin2Check_QTD.ui
99   DlgRef_4Sel1Spin3Check_QTD.ui
100   DlgRef_4Spin_QTD.ui
101   DlgRef_6Sel_QTD.ui
102   DlgRef_Skeleton_QTD.ui
103   )
104
105 # --- headers ---
106
107 # header files / to be processed by moc
108 SET(_moc_HEADERS DlgRef.h)
109
110 # header files / uic wrappings
111 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
112
113 # --- sources ---
114
115 # sources / moc wrappings
116 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
117
118 # sources / to compile
119 SET(DlgRef_SOURCES DlgRef.cxx ${_moc_SOURCES} ${_uic_HEADERS})
120
121 # --- rules ---
122
123 ADD_LIBRARY(DlgRef ${DlgRef_SOURCES})
124 TARGET_LINK_LIBRARIES(DlgRef ${_link_LIBRARIES})
125
126 INSTALL(TARGETS DlgRef EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})