]> SALOME platform Git repositories - modules/gui.git/blob - src/PyInterp/CMakeLists.txt
Salome HOME
Copyright update: 2016
[modules/gui.git] / src / PyInterp / CMakeLists.txt
1 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D, 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
20 INCLUDE(UseQt4Ext)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDES}
27   ${PYTHON_INCLUDE_DIRS}
28   ${PROJECT_SOURCE_DIR}/src/Event
29 )
30
31 # additional preprocessor / compiler flags
32 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
33
34 # libraries to link to
35 SET(_link_LIBRARIES ${QT_LIBRARIES} ${PYTHON_LIBRARIES} Event)
36
37 # --- headers ---
38
39 # header files / to be processed by moc / internal
40 # TODO: check for MSVS project
41 SET(_moc_internal_HEADERS PyInterp_Watcher.h)
42
43 # header files / no moc processing
44 SET(_other_HEADERS
45   PyInterp.h
46   PyInterp_Dispatcher.h
47   PyInterp_Event.h
48   PyInterp_Interp.h
49   PyInterp_Request.h
50   PyInterp_Utils.h
51 )
52
53 # header files / to install
54 SET(PyInterp_HEADERS ${_other_HEADERS})
55
56 # --- sources ---
57
58 # sources / moc wrappings
59 QT4_WRAP_CPP(_moc_SOURCES ${_moc_internal_HEADERS})
60
61 # sources / static
62 SET(_other_SOURCES
63   PyInterp_Dispatcher.cxx
64   PyInterp_Event.cxx
65   PyInterp_Interp.cxx
66   PyInterp_Request.cxx
67 )
68
69 # sources / to compile
70 SET(PyInterp_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
71
72 # --- rules ---
73
74 ADD_LIBRARY(PyInterp ${PyInterp_SOURCES})
75 TARGET_LINK_LIBRARIES(PyInterp ${_link_LIBRARIES})
76 INSTALL(TARGETS PyInterp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
77
78 INSTALL(FILES ${PyInterp_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})