Salome HOME
36904dd3cd8dc71256a84e6fc37f805dba5cfaf7
[modules/gui.git] / src / PyConsole / CMakeLists.txt
1 # Copyright (C) 2012-2015  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(UseQt4Ext)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDES}
27   ${PYTHON_INCLUDE_DIRS}
28   ${PROJECT_SOURCE_DIR}/src/Qtx
29   ${PROJECT_SOURCE_DIR}/src/SUIT
30   ${PROJECT_SOURCE_DIR}/src/Event
31   ${PROJECT_SOURCE_DIR}/src/PyInterp
32 )
33
34 # additional preprocessor / compiler flags
35 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
36
37 # libraries to link to
38 SET(_link_LIBRARIES ${QT_LIBRARIES} ${PYTHON_LIBRARIES} qtx suit PyInterp Event)
39
40 # --- headers ---
41
42 # header files / to be processed by moc
43 SET(_moc_HEADERS
44   PyConsole_Console.h
45   PyConsole_Editor.h
46   PyConsole_EnhEditor.h
47 )
48
49 # header files / no moc processing
50 SET(_other_HEADERS
51   PyConsole.h
52   PyConsole_EnhInterp.h
53   PyConsole_Event.h
54   PyConsole_Interp.h
55   PyConsole_Request.h
56 )
57
58 # header files / to install
59 SET(PyConsole_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
60
61 # --- resources ---
62
63 # resource files / to be processed by lrelease
64 SET(_ts_RESOURCES
65   resources/PyConsole_msg_en.ts
66   resources/PyConsole_msg_fr.ts
67   resources/PyConsole_msg_ja.ts
68 )
69
70 # --- sources ---
71
72 # sources / moc wrappings
73 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
74
75 # sources / static
76 SET(_other_SOURCES
77   PyConsole_Console.cxx
78   PyConsole_Editor.cxx
79   PyConsole_EnhEditor.cxx
80   PyConsole_EnhInterp.cxx
81   PyConsole_Event.cxx
82   PyConsole_Interp.cxx
83   PyConsole_Request.cxx
84 )
85
86 # sources / to compile
87 SET(PyConsole_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
88
89 # --- rules ---
90
91 ADD_LIBRARY(PyConsole ${PyConsole_SOURCES})
92 TARGET_LINK_LIBRARIES(PyConsole ${_link_LIBRARIES})
93 INSTALL(TARGETS PyConsole EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
94
95 INSTALL(FILES ${PyConsole_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
96 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
97