Salome HOME
PyEditor: introduce auto-completion feature
[modules/gui.git] / tools / PyEditor / src / CMakeLists.txt
1 # Copyright (C) 2015-2016  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(PYEDITOR_BUILD_PYTHON)
25   ADD_SUBDIRECTORY(python)
26 ENDIF(PYEDITOR_BUILD_PYTHON)
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_LineNumberArea.h
47   PyEditor_Keywords.h
48   PyEditor_Completer.h
49   PyEditor_PyHighlighter.h
50   PyEditor_SettingsDlg.h
51   PyEditor_Window.h
52 )
53
54 # header files / no moc processing
55 SET(_other_HEADERS
56   PyEditor.h
57   PyEditor_Settings.h
58   PyEditor_StdSettings.h
59 )
60
61 # header files / to install
62 SET(PyEditor_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
63
64 # --- resources ---
65
66 # resource files / to be processed by lrelease
67 SET(_ts_RESOURCES
68   resources/translations/PyEditor_msg_en.ts
69   resources/translations/PyEditor_msg_fr.ts
70   resources/translations/PyEditor_msg_ja.ts
71 )
72
73 # resource files / to be processed by rcc
74 SET(_rcc_RESOURCES resources/PyEditor.qrc)
75
76 # --- sources ---
77
78 # sources / moc wrappings
79 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
80
81 # sources / rcc wrappings
82 QT_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
83
84 # sources / static
85 SET(_other_SOURCES
86   PyEditor_Editor.cxx
87   PyEditor_LineNumberArea.cxx
88   PyEditor_Keywords.cxx
89   PyEditor_Completer.cxx
90   PyEditor_PyHighlighter.cxx
91   PyEditor_Settings.cxx
92   PyEditor_SettingsDlg.cxx
93   PyEditor_StdSettings.cxx
94   PyEditor_Window.cxx
95 )
96
97 # sources / to compile
98 # - for library
99 SET(PyEditor_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_rcc_SOURCES})
100 # - for executable
101 SET(pyeditorexe_SOURCES ${PyEditor_SOURCES} PyEditor.cxx)
102
103 # --- rules ---
104
105 ADD_LIBRARY(PyEditor ${PyEditor_SOURCES})
106 TARGET_LINK_LIBRARIES(PyEditor ${_link_LIBRARIES})
107 INSTALL(TARGETS PyEditor EXPORT ${TOOLS_EXPORT_NAME}TargetGroup DESTINATION ${PYEDITOR_INSTALL_LIBS})
108
109 IF(PYEDITOR_BUILD_EXE)
110   ADD_EXECUTABLE(pyeditorexe ${pyeditorexe_SOURCES})
111   SET_TARGET_PROPERTIES(pyeditorexe PROPERTIES OUTPUT_NAME "pyeditor")
112   TARGET_LINK_LIBRARIES(pyeditorexe ${_link_LIBRARIES})
113   TARGET_COMPILE_DEFINITIONS(pyeditorexe PUBLIC "-DPYEDITOREXE")
114   INSTALL(TARGETS pyeditorexe EXPORT ${TOOLS_EXPORT_NAME}TargetGroup DESTINATION ${PYEDITOR_INSTALL_BINS})
115 ENDIF(PYEDITOR_BUILD_EXE)
116
117 INSTALL(FILES ${PyEditor_HEADERS} DESTINATION ${PYEDITOR_INSTALL_HEADERS})
118 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${PYEDITOR_INSTALL_RES}")