Salome HOME
Merge Qt5 porting.
[modules/gui.git] / src / PyEditor / CMakeLists.txt
1 # Copyright (C) 2015 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 # Author : Maxim GLIBIN, Open CASCADE S.A.S. (maxim.glibin@opencascade.com)
20 #
21
22 INCLUDE(UseQtExt)
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${QT_INCLUDES}
29   ${PROJECT_SOURCE_DIR}/src/Qtx
30 )
31
32 # additional preprocessor / compiler flags
33 ADD_DEFINITIONS(${QT_DEFINITIONS})
34
35 # libraries to link to
36 SET(_link_LIBRARIES ${PLATFORM_LIBS} ${QT_LIBRARIES} qtx)
37
38 # --- headers ---
39
40 # header files / to be processed by moc
41 SET(_moc_HEADERS
42   PyEditor_Editor.h
43   PyEditor_LineNumberArea.h
44   PyEditor_PyHighlighter.h
45   PyEditor_SettingsDlg.h
46 )
47
48 # header files / no moc processing
49 SET(_other_HEADERS
50   PyEditor.h
51   PyEditor_Settings.h
52 )
53
54 # header files / to install
55 SET(PyEditor_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
56
57 # --- resources ---
58
59 # resource files / to be processed by lrelease
60 SET(RESOURCES_PATH resources)
61
62 SET(_ts_RESOURCES
63   ${RESOURCES_PATH}/translations/PyEditor_msg_en.ts
64   ${RESOURCES_PATH}/translations/PyEditor_msg_fr.ts
65   ${RESOURCES_PATH}/translations/PyEditor_msg_ja.ts
66 )
67
68 # sources / moc wrappings
69 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
70
71 # sources / static
72 SET(_other_SOURCES
73   PyEditor_Editor.cxx
74   PyEditor_LineNumberArea.cxx
75   PyEditor_PyHighlighter.cxx
76   PyEditor_Settings.cxx
77   PyEditor_SettingsDlg.cxx
78 )
79
80 # sources / to compile
81 SET(PyEditor_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
82
83 # --- rules ---
84 ADD_LIBRARY(PyEditor ${PyEditor_SOURCES})
85 TARGET_LINK_LIBRARIES(PyEditor ${_link_LIBRARIES})
86 INSTALL(TARGETS PyEditor EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
87
88 INSTALL(FILES ${PyEditor_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
89 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")