Salome HOME
Add COPYING license file
[tools/ydefx.git] / src / cpp / CMakeLists.txt
1 # Copyright (C) 2019-2024 EDF
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   PyStudyJob.cxx
34 )
35
36 SET(ydefx_HEADERS
37   PyStudyFunction.hxx
38   StudyFunction.hxx
39   JobParametersProxy.hxx
40   Sample.hxx
41   SamplePyConversions.hxx
42   PyConversions.hxx
43   Exceptions.hxx
44   MonoPyJob.hxx
45   TMonoPyJob.hxx
46   Job.hxx
47   Launcher.hxx
48   PyStudyJob.hxx
49   TPyStudyJob.hxx
50 )
51
52 IF(WIN32)
53   SET(ydefx_LINK
54     ${PY2CPP_ROOT_DIR}/lib/py2cpp.lib
55     ${PYTHON_LIBRARIES}
56     ${PLATFORM_LIBS}
57     )
58 ELSE(WIN32)
59   SET(ydefx_LINK
60     py2cpp
61     ${PYTHON_LIBRARIES}
62   )
63 ENDIF(WIN32)
64
65 ADD_LIBRARY(ydefx ${ydefx_SOURCES})
66 TARGET_LINK_LIBRARIES(ydefx ${ydefx_LINK})
67 IF(WIN32)
68   TARGET_INCLUDE_DIRECTORIES(ydefx PUBLIC
69                              $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/cpp>
70                              $<INSTALL_INTERFACE:${SALOME_INSTALL_HEADERS}>
71                              ${PY2CPP_ROOT_DIR}/include)
72 ELSE(WIN32)
73   TARGET_INCLUDE_DIRECTORIES(ydefx PUBLIC
74                              $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/cpp>
75                              $<INSTALL_INTERFACE:${SALOME_INSTALL_HEADERS}>)
76 ENDIF(WIN32)
77 INSTALL(TARGETS ydefx DESTINATION ${SALOME_INSTALL_LIBS})
78 INSTALL(TARGETS ydefx EXPORT ydefxCfg_cmake LIBRARY DESTINATION ${SALOME_INSTALL_LIBS})
79 INSTALL(FILES ${ydefx_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}/ydefx)
80
81 ADD_SUBDIRECTORY(Test)