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