Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / QDS / 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(${CMAKE_SOURCE_DIR}/adm_local/cmake_files/UseQT4EXT.cmake)
21
22 INCLUDE_DIRECTORIES(
23   ${CAS_INCLUDE_DIRS}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${QT_INCLUDES}
26   ${KERNEL_ROOT_DIR}/include/salome
27   ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx
28   ${CMAKE_CURRENT_SOURCE_DIR}/../DDS
29 )
30
31 SET(COMMON_LIBS ${QT_LIBRARIES} ${CAS_KERNEL} DDS qtx)
32
33 SET(GUI_HEADERS   
34   QDS_CheckBox.h
35   QDS_ComboBox.h
36   QDS_Datum.h
37   QDS_LineEdit.h
38   QDS_SpinBox.h
39   QDS_SpinBoxDbl.h
40   QDS_TextEdit.h
41   QDS_RadioBox.h
42 )
43 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
44
45 SET(QDS_SOURCES
46   QDS.cxx
47   QDS_CheckBox.cxx
48   QDS_ComboBox.cxx
49   QDS_Datum.cxx
50   QDS_LineEdit.cxx
51   QDS_SpinBox.cxx
52   QDS_SpinBoxDbl.cxx
53   QDS_TextEdit.cxx
54   QDS_Validator.cxx
55   QDS_RadioBox.cxx
56 )
57
58 SET(GUITS_SOURCES
59   resources/QDS_msg_en.ts
60   resources/QDS_msg_fr.ts
61 )
62
63 ADD_DEFINITIONS(${QT_DEFINITIONS} ${CAS_DEFINITIONS})
64
65 ADD_LIBRARY(QDS ${QDS_SOURCES} ${GUI_HEADERS_MOC})
66 TARGET_LINK_LIBRARIES(QDS ${COMMON_LIBS})
67 INSTALL(TARGETS QDS DESTINATION ${GUI_salomelib_LIBS})
68
69 SET(COMMON_HEADERS_H 
70   QDS.h
71   QDS_CheckBox.h
72   QDS_ComboBox.h
73   QDS_Datum.h
74   QDS_LineEdit.h
75   QDS_SpinBox.h
76   QDS_SpinBoxDbl.h
77   QDS_TextEdit.h
78   QDS_Validator.h
79   QDS_RadioBox.h
80 )
81
82 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${GUI_salomeinclude_HEADERS})
83 QT4_INSTALL_TS_RESOURCES("${GUITS_SOURCES}" "${GUI_salomeres_DATA}")
84