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