]> SALOME platform Git repositories - modules/gui.git/blob - src/QDS/CMakeLists.txt
Salome HOME
Merge from V6_main (04/10/2012)
[modules/gui.git] / src / QDS / CMakeLists.txt
1 # Copyright (C) 2012  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_INCLUDE_DIRS}
26   ${KERNEL_ROOT_DIR}/include/salome
27   ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx
28   ${CMAKE_CURRENT_SOURCE_DIR}/../DDS
29 )
30
31 SET(COMMON_FLAGS "${QT_DEFINITIONS} ${CAS_DEFINITIONS} ${PLATFORM_DEFINITIONS}")
32 SET(COMMON_LIBS ${QT_MT_LIBS} ${CAS_KERNEL} DDS qtx)
33
34 SET(GUI_HEADERS   
35   QDS_CheckBox.h
36   QDS_ComboBox.h
37   QDS_Datum.h
38   QDS_LineEdit.h
39   QDS_SpinBox.h
40   QDS_SpinBoxDbl.h
41   QDS_TextEdit.h
42   QDS_RadioBox.h
43 )
44 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
45
46 SET(QDS_SOURCES
47   QDS.cxx
48   QDS_CheckBox.cxx
49   QDS_ComboBox.cxx
50   QDS_Datum.cxx
51   QDS_LineEdit.cxx
52   QDS_SpinBox.cxx
53   QDS_SpinBoxDbl.cxx
54   QDS_TextEdit.cxx
55   QDS_Validator.cxx
56   QDS_RadioBox.cxx
57 )
58
59 SET(GUITS_SOURCES
60   resources/QDS_msg_en.ts
61   resources/QDS_msg_fr.ts
62 )
63
64 ADD_LIBRARY(QDS SHARED ${QDS_SOURCES} ${GUI_HEADERS_MOC})
65 SET_TARGET_PROPERTIES(QDS PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
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