Salome HOME
IMP: GUI: Japanese translations
[modules/gui.git] / src / PyConsole / 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(UseQt4Ext)
21
22 INCLUDE_DIRECTORIES(
23   ${QT_INCLUDES}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${PYTHON_INCLUDE_DIRS}
26   ${KERNEL_INCLUDE_DIRS}
27   ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx
28   ${CMAKE_CURRENT_SOURCE_DIR}/../SUIT
29   ${CMAKE_CURRENT_SOURCE_DIR}/../PyInterp
30   ${CMAKE_CURRENT_SOURCE_DIR}/../Event
31 )
32
33 SET(COMMON_LIBS ${PYTHON_LIBRARIES} ${QT_LIBRARIES} ${SALOMELocalTrace} qtx suit PyInterp Event)
34
35 SET(GUI_HEADERS   
36   PyConsole_Editor.h
37   PyConsole_EnhEditor.h
38   PyConsole_Console.h
39 )
40 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
41
42 SET(PyConsole_SOURCES
43   PyConsole_Console.cxx
44   PyConsole_Editor.cxx
45   PyConsole_EnhEditor.cxx
46   PyConsole_Interp.cxx
47   PyConsole_EnhInterp.cxx
48   PyConsole_Event.cxx
49   PyConsole_Request.cxx
50 )
51
52 SET(GUITS_SOURCES
53   resources/PyConsole_msg_en.ts
54   resources/PyConsole_msg_fr.ts
55   resources/PyConsole_msg_ja.ts
56 )
57
58 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
59
60 ADD_LIBRARY(PyConsole ${PyConsole_SOURCES} ${GUI_HEADERS_MOC})
61 TARGET_LINK_LIBRARIES(PyConsole ${COMMON_LIBS})
62 INSTALL(TARGETS PyConsole EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
63
64 SET(COMMON_HEADERS_H 
65   PyConsole.h
66   PyConsole_Console.h
67   PyConsole_Editor.h
68   PyConsole_EnhEditor.h
69   PyConsole_Interp.h
70   PyConsole_EnhInterp.h
71   PyConsole_Event.h
72   PyConsole_Request.h
73 )
74 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${SALOME_INSTALL_HEADERS})
75 QT4_INSTALL_TS_RESOURCES("${GUITS_SOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
76