Salome HOME
Merge from V6_main 11/02/2013
[modules/gui.git] / src / PyInterp / CMakeLists.txt
1 # Copyright (C) 2012  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(${CMAKE_SOURCE_DIR}/adm_local/cmake_files/UseQT4EXT.cmake)
21
22 INCLUDE_DIRECTORIES(
23   ${QT_INCLUDE_DIRS}
24   ${PYTHON_INCLUDE_DIRS}
25   ${KERNEL_ROOT_DIR}/include/salome
26   ${CMAKE_CURRENT_SOURCE_DIR}/../Event
27 )
28
29 SET(COMMON_FLAGS "${QT_DEFINITIONS} ${PYTHON_DEFINITIONS} ${PLATFORM_DEFINITIONS}")
30 SET(COMMON_LIBS ${PYTHON_LIBS} ${QT_LIBS} Event)
31
32 SET(GUI_HEADERS PyInterp_Watcher.h)
33 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
34
35 SET(PyInterp_SOURCES
36   PyInterp_Interp.cxx
37   PyInterp_Dispatcher.cxx
38 )
39
40 ADD_LIBRARY(PyInterp SHARED ${PyInterp_SOURCES} ${GUI_HEADERS_MOC})
41 SET_TARGET_PROPERTIES(PyInterp PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
42 TARGET_LINK_LIBRARIES(PyInterp ${COMMON_LIBS})
43 INSTALL(TARGETS PyInterp DESTINATION ${GUI_salomelib_LIBS})
44
45 SET(COMMON_HEADERS_H 
46   PyInterp.h
47   PyInterp_Interp.h
48   PyInterp_Dispatcher.h
49 )
50 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${GUI_salomeinclude_HEADERS})