Salome HOME
Integrates the python editor as new SALOME viewer. Writes comments. Designs icons...
[modules/gui.git] / src / PyViewer / 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(UseQt4Ext)
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDES}
27   ${PROJECT_SOURCE_DIR}/src/Qtx
28   ${PROJECT_SOURCE_DIR}/src/SUIT
29   ${PROJECT_SOURCE_DIR}/src/PyEditor
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 suit PyEditor)
37
38 # header files / to be processed by moc
39 SET(_moc_HEADERS
40   PyViewer_ViewManager.h
41   PyViewer_ViewModel.h
42   PyViewer_ViewWindow.h
43 )
44
45 # header files / no moc processing
46 SET(_other_HEADERS
47   PyViewer.h
48 )
49
50 # header files / to install
51 SET(PyViewer_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
52
53 # resource files / to be processed by lrelease
54 SET(RESOURCES_PATH resources)
55
56 SET(_ts_RESOURCES
57   ${RESOURCES_PATH}/translations/PyViewer_msg_en.ts
58   ${RESOURCES_PATH}/translations/PyViewer_msg_fr.ts
59   ${RESOURCES_PATH}/translations/PyViewer_msg_ja.ts
60 )
61
62 # resource files / to be processed by rcc
63 SET(_rcc_RESOURCES ${RESOURCES_PATH}/PyEditor.qrc)
64
65 # sources / moc wrappings
66 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
67
68 # sources / rcc wrappings
69 QT4_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
70
71 # sources / static
72 SET(_other_SOURCES
73   PyViewer_ViewManager.cxx
74   PyViewer_ViewModel.cxx
75   PyViewer_ViewWindow.cxx
76 )
77
78 # sources / to compile
79 SET(PyViewer_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
80
81 # --- rules ---
82 ADD_LIBRARY(PyViewer ${PyViewer_SOURCES} ${_rcc_SOURCES})
83 TARGET_LINK_LIBRARIES(PyViewer ${_link_LIBRARIES})
84 INSTALL(TARGETS PyViewer EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
85
86 ADD_EXECUTABLE(DummyPyEditor PyViewer.cxx)
87 SET_TARGET_PROPERTIES(DummyPyEditor PROPERTIES OUTPUT_NAME "PyEditor")
88 TARGET_LINK_LIBRARIES(DummyPyEditor ${_link_LIBRARIES} PyEditor PyViewer)
89 INSTALL(TARGETS DummyPyEditor EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_BINS})
90
91 INSTALL(FILES ${PyViewer_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
92 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")