Salome HOME
[bos #32216][CEA] GUI ergonomic with HDPI screens.
[modules/gui.git] / src / PVServerService / CMakeLists.txt
1 # Copyright (C) 2015-2024  CEA, EDF, 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 ADD_SUBDIRECTORY(ENGINE)
21 IF(NOT SALOME_LIGHT_ONLY)
22     ADD_SUBDIRECTORY(ServiceLoader)
23 ENDIF()    
24
25 INCLUDE_DIRECTORIES(
26   ${CMAKE_CURRENT_SOURCE_DIR}
27   ${KERNEL_INCLUDE_DIRS}
28   ${PROJECT_SOURCE_DIR}/tools/PyInterp/src
29   )
30
31 ADD_DEFINITIONS(
32   ${KERNEL_DEFINITIONS}
33   ${PYTHON_DEFINITIONS}
34   )
35
36 SET(_link_LIBRARIES 
37   ${KERNEL_OpUtil}        # class SALOME_Exception
38   PyInterp                # class PyLockWrapper
39   )
40
41 # --- headers ---
42 SET(PVServer_HEADERS
43   PVServerService.h
44   PVServer_ServiceWrapper.h  
45 )
46
47 # --- sources ---
48 SET(PVServer_SOURCES
49     PVServer_ServiceWrapper.cxx
50   )
51   
52 SET(PVServer_SWIG
53     PVServer_ServiceLoader.i
54    )
55   
56 # --- rules ---
57 ADD_LIBRARY(PVServerService ${PVServer_SOURCES})
58 TARGET_LINK_LIBRARIES(PVServerService ${_link_LIBRARIES})
59 INSTALL(TARGETS PVServerService EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
60
61 # --- header installation ---
62 INSTALL(FILES ${PVServer_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})