Salome HOME
e25fd56aa0e1a7f8c8c9f72cef3bbe8b202ddae9
[modules/gui.git] / tools / CurvePlot / src / cpp / CMakeLists.txt
1 # Copyright (C) 2012-2023  CEA, 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 ADD_SUBDIRECTORY(test)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${PYTHON_INCLUDE_DIRS}
27   ${NUMPY_INCLUDE_DIR}
28   ${GUI_INCLUDE_DIRS}
29 )
30
31 # additional preprocessor / compiler flags
32 ADD_DEFINITIONS(${PYTHON_DEFINITIONS})
33
34 # libraries to link to
35 SET(_link_LIBRARIES ${PYTHON_LIBRARIES} ${GUI_PyInterp})
36
37 IF(TARGET PyInterp AND WIN32)
38   SET(_link_LIBRARIES ${_link_LIBRARIES} PyInterp)
39 ENDIF()
40
41 # --- headers ---
42
43 # header files / no moc processing
44 SET(_other_HEADERS
45   CurvePlot.hxx
46 #  ColumnVector.hxx
47 )
48
49 # sources / static
50 SET(_other_SOURCES
51   CurvePlot.cxx
52 #  ColumnVector.cxx
53 )
54 # --- rules ---
55
56 ADD_LIBRARY(CurvePlot ${_other_SOURCES})
57 TARGET_LINK_LIBRARIES(CurvePlot ${_link_LIBRARIES})
58 INSTALL(TARGETS CurvePlot EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
59
60 INSTALL(FILES ${_other_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})