Salome HOME
0850550b7675e26d25fe1cc4d0407a8ec20b1d00
[modules/gui.git] / tools / PyConsole / src / CMakeLists.txt
1 # Copyright (C) 2012-2022  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(UseQtExt)
21
22 IF(BUILD_PYMODULE)
23   ADD_SUBDIRECTORY(python)
24 ENDIF(BUILD_PYMODULE)
25
26 # --- options ---
27
28 # additional include directories
29 INCLUDE_DIRECTORIES(
30   ${QT_INCLUDES}
31   ${PYTHON_INCLUDE_DIRS}
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} PyInterp)
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 )
47
48 # header files / no moc processing
49 SET(_other_HEADERS
50   PyConsole.h
51   PyConsole_Event.h
52   PyConsole_Interp.h
53   PyConsole_Request.h
54 )
55
56 # header files / to install
57 SET(PyConsole_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
58
59 # --- resources ---
60
61 # resource files / to be processed by lrelease
62 SET(_ts_RESOURCES
63   resources/PyConsole_msg_en.ts
64   resources/PyConsole_msg_fr.ts
65   resources/PyConsole_msg_ja.ts
66 )
67
68 # --- sources ---
69
70 # sources / moc wrappings
71 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
72
73 # sources / static
74 SET(_other_SOURCES
75   PyConsole_Console.cxx
76   PyConsole_Event.cxx
77   PyConsole_Interp.cxx
78   PyConsole_Request.cxx
79   PyConsole_Editor.cxx
80 )
81
82 # sources / to compile
83 SET(PyConsole_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
84
85 # --- rules ---
86
87 ADD_LIBRARY(PyConsole ${PyConsole_SOURCES})
88 TARGET_LINK_LIBRARIES(PyConsole ${_link_LIBRARIES})
89 INSTALL(TARGETS PyConsole EXPORT ${PYCONSOLE_EXPORT_NAME}TargetGroup DESTINATION ${PYCONSOLE_INSTALL_LIBS})
90
91 INSTALL(FILES ${PyConsole_HEADERS} DESTINATION ${PYCONSOLE_INSTALL_HEADERS})
92 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${PYCONSOLE_INSTALL_RES}")