Salome HOME
0054504: Exception when accessing VTK renderer with libSalomePy module
[modules/gui.git] / src / QDS / CMakeLists.txt
1 # Copyright (C) 2012-2016  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   ${OpenCASCADE_INCLUDE_DIR}
27   ${QT_INCLUDES}
28   ${PROJECT_SOURCE_DIR}/src/Qtx
29   ${PROJECT_SOURCE_DIR}/src/DDS
30 )
31
32 # additional preprocessor / compiler flags
33 ADD_DEFINITIONS(${QT_DEFINITIONS} ${OpenCASCADE_DEFINITIONS})
34
35 # libraries to link to
36 SET(_link_LIBRARIES ${QT_LIBRARIES} ${OpenCASCADE_FoundationClasses_LIBRARIES} qtx DDS)
37
38 # --- headers ---
39
40 # header files / to be processed by moc
41 SET(_moc_HEADERS
42   QDS_CheckBox.h
43   QDS_ComboBox.h
44   QDS_Datum.h
45   QDS_LineEdit.h
46   QDS_RadioBox.h
47   QDS_SpinBox.h
48   QDS_SpinBoxDbl.h
49   QDS_TextEdit.h
50 )
51
52 # obsolete files: not migrated to Qt4
53 # _moc_HEADERS << QDS_Table.h
54 # TODO: migrate or remove?
55
56 # header files / no moc processing
57 SET(_other_HEADERS
58   QDS.h
59   QDS_Validator.h
60 )
61
62 # header files / to install
63 SET(QDS_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
64
65 # --- resources ---
66
67 # resource files / to be processed by lrelease
68 SET(_ts_RESOURCES
69   resources/QDS_msg_en.ts
70   resources/QDS_msg_fr.ts
71   resources/QDS_msg_ja.ts
72 )
73
74 # --- sources ---
75
76 # sources / moc wrappings
77 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
78
79 # sources / static
80 SET(_other_SOURCES
81   QDS.cxx
82   QDS_CheckBox.cxx
83   QDS_ComboBox.cxx
84   QDS_Datum.cxx
85   QDS_LineEdit.cxx
86   QDS_RadioBox.cxx
87   QDS_SpinBox.cxx
88   QDS_SpinBoxDbl.cxx
89   QDS_TextEdit.cxx
90   QDS_Validator.cxx
91 )
92
93 # obsolete files: not migrated to Qt4
94 # _other_SOURCES << QDS_Table.cxx
95 # TODO: migrate or remove?
96
97 # sources / to compile
98 SET(QDS_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
99
100 # --- rules ---
101
102 ADD_LIBRARY(QDS ${QDS_SOURCES})
103 TARGET_LINK_LIBRARIES(QDS ${_link_LIBRARIES})
104 INSTALL(TARGETS QDS EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
105
106 INSTALL(FILES ${QDS_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
107 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")