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