Salome HOME
Merge from V6_main 12/04/2013
[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(${CMAKE_SOURCE_DIR}/adm_local/cmake_files/UseQT4EXT.cmake)
21
22 INCLUDE_DIRECTORIES(
23   ${QT_INCLUDES}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${PYTHON_INCLUDE_DIRS}
26   ${KERNEL_ROOT_DIR}/include/salome
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 )
56
57 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
58
59 ADD_LIBRARY(PyConsole ${PyConsole_SOURCES} ${GUI_HEADERS_MOC})
60 TARGET_LINK_LIBRARIES(PyConsole ${COMMON_LIBS})
61 INSTALL(TARGETS PyConsole DESTINATION ${GUI_salomelib_LIBS})
62
63 SET(COMMON_HEADERS_H 
64   PyConsole.h
65   PyConsole_Console.h
66   PyConsole_Editor.h
67   PyConsole_EnhEditor.h
68   PyConsole_Interp.h
69   PyConsole_EnhInterp.h
70   PyConsole_Event.h
71   PyConsole_Request.h
72 )
73 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${GUI_salomeinclude_HEADERS})
74 QT4_INSTALL_TS_RESOURCES("${GUITS_SOURCES}" "${GUI_salomeres_DATA}")
75