Salome HOME
Work on cmake.
[tools/ydefx.git] / src / cpp / CMakeLists.txt
1 # Copyright (C) 2019  EDF R&D
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_DIRECTORIES(
21   ${PYTHON_INCLUDE_DIR}
22 )
23
24 ADD_DEFINITIONS(
25   ${PYTHON_DEFINITIONS}
26 )
27
28 SET(ydefx_SOURCES
29   PyStudyFunction.cxx
30   JobParametersProxy.cxx
31   Exceptions.cxx
32   MonoPyJob.cxx
33 )
34
35 SET(ydefx_HEADERS
36   PyStudyFunction.hxx
37   StudyFunction.hxx
38   JobParametersProxy.hxx
39   Sample.hxx
40   SamplePyConversions.hxx
41   PyConversions.hxx
42   Exceptions.hxx
43   MonoPyJob.hxx
44   TMonoPyJob.hxx
45   Job.hxx
46   Launcher.hxx
47 )
48
49 SET(ydefx_LINK
50   py2cpp
51   ${PYTHON_LIBRARIES}
52 )
53
54 ADD_LIBRARY(ydefx ${ydefx_SOURCES})
55 TARGET_LINK_LIBRARIES(ydefx ${ydefx_LINK})
56 TARGET_INCLUDE_DIRECTORIES(ydefx PUBLIC
57                           $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/cpp>
58                           $<INSTALL_INTERFACE:${SALOME_INSTALL_HEADERS}>)
59
60 INSTALL(TARGETS ydefx DESTINATION ${SALOME_INSTALL_LIBS})
61 INSTALL(TARGETS ydefx EXPORT ydefxCfg_cmake LIBRARY DESTINATION ${SALOME_INSTALL_LIBS})
62 INSTALL(FILES ${ydefx_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}/ydefx)
63
64 ADD_SUBDIRECTORY(Test)