]> SALOME platform Git repositories - modules/gui.git/blob - src/PyInterp/CMakeLists.txt
Salome HOME
e94a7985202542e0ebe0519ede59602d1b5e739a
[modules/gui.git] / src / PyInterp / CMakeLists.txt
1 # Copyright (C) 2012-2013  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.
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 INCLUDE_DIRECTORIES(
23   ${QT_INCLUDES}
24   ${PYTHON_INCLUDE_DIRS}
25   ${KERNEL_INCLUDE_DIRS}
26   ${CMAKE_CURRENT_SOURCE_DIR}/../Event
27 )
28
29 SET(COMMON_LIBS ${PYTHON_LIBRARIES} ${QT_LIBRARIES} Event)
30
31 SET(GUI_HEADERS PyInterp_Watcher.h)
32 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
33
34 SET(PyInterp_SOURCES
35   PyInterp_Interp.cxx
36   PyInterp_Dispatcher.cxx
37   PyInterp_Event.cxx
38   PyInterp_Request.cxx
39 )
40
41 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
42
43 ADD_LIBRARY(PyInterp ${PyInterp_SOURCES} ${GUI_HEADERS_MOC})
44 TARGET_LINK_LIBRARIES(PyInterp ${COMMON_LIBS})
45 INSTALL(TARGETS PyInterp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
46
47 SET(COMMON_HEADERS_H 
48   PyInterp.h
49   PyInterp_Interp.h
50   PyInterp_Dispatcher.h
51   PyInterp_Event.h
52   PyInterp_Request.h
53 )
54 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${SALOME_INSTALL_HEADERS})