Salome HOME
Copyright update: 2016
[modules/hexablock.git] / src / HEXABLOCKGUI / MyDlgRef / CMakeLists.txt
1 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D
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 # --- options ---
21 # additional include directories
22 INCLUDE_DIRECTORIES(
23   ${QT_INCLUDES}
24   ${GUI_INCLUDE_DIRS}
25   ${CMAKE_CURRENT_BINARY_DIR}
26 )
27
28 # libraries to link to
29 SET(_link_LIBRARIES
30   ${GUI_qtx}
31   ${GUI_SalomeApp}
32 )
33
34 # --- headers ---
35
36 # header files / to be processed by moc
37 SET(MyDlgRef_HEADERS
38   MyDlgRef.hxx
39 )
40
41 # --- sources ---
42
43 # sources / moc wrappings
44 QT4_WRAP_CPP(_moc_SOURCES ${MyDlgRef_HEADERS})
45
46 # sources / static
47 SET(_other_SOURCES
48   MyDlgRef.hxx
49   MyDlgRef.cxx
50 )
51
52 # uic files / to be processed by pyuic
53 SET(_pyuic_files
54   DlgRef_1Sel2Spin_QTD.ui
55   DlgRef_1Sel3Spin_QTD.ui
56   DlgRef_2Sel1Spin_QTD.ui
57   DlgRef_2Sel_QTD.ui
58   DlgRef_3Spin_QTD.ui
59   DlgRef_Skeleton_QTD.ui
60 )
61
62 # scripts / pyuic wrappings
63 QT4_WRAP_UI(_uic_HEADERS ${_pyuic_files})
64
65 # sources / to compile
66 SET(MyDlgRef_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
67
68 # --- rules ---
69
70 ADD_LIBRARY(MyDlgRef ${MyDlgRef_SOURCES})
71 TARGET_LINK_LIBRARIES(MyDlgRef ${_link_LIBRARIES} )
72 INSTALL(TARGETS MyDlgRef EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})