Salome HOME
Unicode support
[modules/gui.git] / src / SALOME_PY / CMakeLists.txt
1 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D, 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 INCLUDE(${VTK_USE_FILE})
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${QT_INCLUDES}
28   ${PYTHON_INCLUDE_DIRS}
29   ${PROJECT_SOURCE_DIR}/src/CAM
30   ${PROJECT_SOURCE_DIR}/src/Event
31   ${PROJECT_SOURCE_DIR}/src/LightApp
32   ${PROJECT_SOURCE_DIR}/src/OBJECT
33   ${PROJECT_SOURCE_DIR}/src/Qtx
34   ${PROJECT_SOURCE_DIR}/src/STD
35   ${PROJECT_SOURCE_DIR}/src/SUIT
36   ${PROJECT_SOURCE_DIR}/src/SVTK
37   ${PROJECT_SOURCE_DIR}/src/VTKViewer
38 )
39
40 # additional preprocessor / compiler flags
41 ADD_DEFINITIONS(
42   ${OpenCASCADE_DEFINITIONS}
43   ${QT_DEFINITIONS}
44   ${PYTHON_DEFINITIONS}
45 )
46
47 # libraries to link to
48 SET(_link_LIBRARIES
49   ${PYTHON_LIBRARIES}
50   ${QT_LIBRARIES}
51   ${OPENGL_LIBRARIES}
52   ${VTK_LIBRARIES}
53   LightApp
54 )
55
56 # --- rules ---
57
58 ADD_LIBRARY(SalomePy SalomePy.cxx)
59 TARGET_LINK_LIBRARIES(SalomePy ${_link_LIBRARIES})
60 INSTALL(TARGETS SalomePy DESTINATION ${SALOME_INSTALL_LIBS})
61
62 # TODO: check on windows
63 IF(WIN32)
64   SET_TARGET_PROPERTIES(SalomePy PROPERTIES PREFIX "lib" SUFFIX ".pyd" DEBUG_OUTPUT_NAME SalomePy_d RELEASE_OUTPUT_NAME SalomePy)
65 ENDIF(WIN32)
66
67 # TODO: check if PYTHON_ADD_MODULE() macro can be used to build this target