Salome HOME
e70b4fb36d0273e16e1c94fafe7799a1514fb652
[modules/gui.git] / tools / PyEditor / src / CMakeLists.txt
1 # Copyright (C) 2015-2023  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 IF(BUILD_PYMODULE)
25   ADD_SUBDIRECTORY(python)
26 ENDIF(BUILD_PYMODULE)
27
28 # --- options ---
29
30 # additional include directories
31 INCLUDE_DIRECTORIES(
32   ${QT_INCLUDES}
33 )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(${QT_DEFINITIONS})
37
38 # libraries to link to
39 SET(_link_LIBRARIES ${PLATFORM_LIBS} ${QT_LIBRARIES})
40
41 # --- headers ---
42
43 # header files / to be processed by moc
44 SET(_moc_HEADERS
45   PyEditor_Editor.h
46   PyEditor_FindTool.h
47   PyEditor_LineNumberArea.h
48   PyEditor_Keywords.h
49   PyEditor_Completer.h
50   PyEditor_PyHighlighter.h
51   PyEditor_SettingsDlg.h
52   PyEditor_Widget.h
53   PyEditor_Window.h
54 )
55
56 # header files / no moc processing
57 SET(_other_HEADERS
58   PyEditor.h
59   PyEditor_Settings.h
60   PyEditor_StdSettings.h
61 )
62
63 # header files / to install
64 SET(PyEditor_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
65
66 # --- resources ---
67
68 # resource files / to be processed by lrelease
69 SET(_ts_RESOURCES
70   resources/translations/PyEditor_msg_en.ts
71   resources/translations/PyEditor_msg_fr.ts
72   resources/translations/PyEditor_msg_ja.ts
73 )
74
75 # resource files / to be processed by rcc
76 SET(_rcc_RESOURCES resources/PyEditor.qrc)
77
78 # --- sources ---
79
80 # sources / moc wrappings
81 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
82
83 # sources / rcc wrappings
84 QT_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
85
86 # sources / static
87 SET(_other_SOURCES
88   PyEditor_Editor.cxx
89   PyEditor_FindTool.cxx
90   PyEditor_LineNumberArea.cxx
91   PyEditor_Keywords.cxx
92   PyEditor_Completer.cxx
93   PyEditor_PyHighlighter.cxx
94   PyEditor_Settings.cxx
95   PyEditor_SettingsDlg.cxx
96   PyEditor_StdSettings.cxx
97   PyEditor_Widget.cxx
98   PyEditor_Window.cxx
99 )
100
101 # sources / to compile
102 # - for library
103 SET(PyEditor_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_rcc_SOURCES})
104 # - for executable
105 SET(pyeditorexe_SOURCES ${PyEditor_SOURCES} PyEditor.cxx)
106
107 # --- rules ---
108
109 ADD_LIBRARY(PyEditor ${PyEditor_SOURCES})
110 TARGET_LINK_LIBRARIES(PyEditor ${_link_LIBRARIES})
111 INSTALL(TARGETS PyEditor EXPORT ${PYEDITOR_EXPORT_NAME}TargetGroup DESTINATION ${PYEDITOR_INSTALL_LIBS})
112
113 IF(BUILD_EXECUTABLE)
114   ADD_EXECUTABLE(pyeditorexe ${pyeditorexe_SOURCES})
115   SET_TARGET_PROPERTIES(pyeditorexe PROPERTIES OUTPUT_NAME "pyeditor")
116   TARGET_LINK_LIBRARIES(pyeditorexe ${_link_LIBRARIES})
117   TARGET_COMPILE_DEFINITIONS(pyeditorexe PUBLIC "-DPYEDITOREXE")
118   INSTALL(TARGETS pyeditorexe EXPORT ${PYEDITOR_EXPORT_NAME}TargetGroup DESTINATION ${PYEDITOR_INSTALL_BINS})
119 ENDIF(BUILD_EXECUTABLE)
120
121 INSTALL(FILES ${PyEditor_HEADERS} DESTINATION ${PYEDITOR_INSTALL_HEADERS})
122 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${PYEDITOR_INSTALL_RES}")