]> SALOME platform Git repositories - plugins/canrecplugin.git/blob - src/CANRECPLUGINEngine/CMakeLists.txt
Salome HOME
8db99911526098a73a1f5d84df8fc1e216310447
[plugins/canrecplugin.git] / src / CANRECPLUGINEngine / CMakeLists.txt
1 # Copyright (C) 2014-2016  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 # --- options ---
21
22 # additional include directories
23 INCLUDE_DIRECTORIES(
24   ${CAS_INCLUDE_DIRS}
25   ${CR_INCLUDE_DIRS}
26   ${OMNIORB_INCLUDE_DIR}
27   ${KERNEL_INCLUDE_DIRS}
28   ${GEOM_INCLUDE_DIRS}
29   ${PROJECT_BINARY_DIR}
30   ${PROJECT_BINARY_DIR}/idl
31   ${CMAKE_CURRENT_BINARY_DIR}
32   )
33
34 # additional preprocessor / compiler flags
35 ADD_DEFINITIONS(
36   ${CAS_DEFINITIONS}
37   ${OMNIORB_DEFINITIONS}
38   )
39
40 # libraries to link to
41 SET(_link_LIBRARIES
42   ${CR_LIBRARIES}
43   ${KERNEL_SALOMEBasics}
44   ${KERNEL_SALOMELocalTrace}
45   ${KERNEL_OpUtil}
46   ${GEOM_SalomeIDLGEOM}
47   ${GEOM_GEOMEngine}
48   SalomeIDLCANRECPlugin
49   )
50
51 # --- headers ---
52
53 SET(CANRECPluginEngine_HEADERS
54   CANRECPluginEngine.hxx
55   CANRECPluginEngine_IOperations_i.hh
56   CANRECPluginEngine_OperationsCreator.hh
57   CANRECPluginImpl_Driver.hxx
58   CANRECPluginImpl_ICanRec.hxx
59   CANRECPluginImpl_IOperations.hxx
60   CANRECPluginImpl_Types.hxx
61   )
62 # --- sources ---
63
64 SET(CANRECPluginEngine_SOURCES
65   CANRECPluginEngine.cxx
66   CANRECPluginEngine_IOperations_i.cc
67   CANRECPluginEngine_OperationsCreator.cc
68   CANRECPluginImpl_Driver.cxx
69   CANRECPluginImpl_IOperations.cxx
70   )
71
72 # --- rules ---
73
74 ADD_LIBRARY(CANRECPluginEngine ${CANRECPluginEngine_SOURCES})
75 TARGET_LINK_LIBRARIES(CANRECPluginEngine ${_link_LIBRARIES})
76 INSTALL(TARGETS CANRECPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
77
78 INSTALL(FILES ${CANRECPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
79
80 # configure license file
81 CONFIGURE_FILE(CANRECPluginImpl_license.h.in CANRECPluginImpl_license.h)