Salome HOME
CMake: Removed MPI detection: GUI only needs it as a second rank
[modules/gui.git] / src / SOCC / CMakeLists.txt
1 # Copyright (C) 2012-2013  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.
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(UseQt4Ext)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${CAS_INCLUDE_DIRS}
27   ${QT_INCLUDES}
28   ${PROJECT_SOURCE_DIR}/src/Qtx
29   ${PROJECT_SOURCE_DIR}/src/SUIT
30   ${PROJECT_SOURCE_DIR}/src/OBJECT
31   ${PROJECT_SOURCE_DIR}/src/Prs
32   ${PROJECT_SOURCE_DIR}/src/OCCViewer
33 )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(${QT_DEFINITIONS} ${CAS_DEFINITIONS} ${OGL_DEFINITIONS})
37
38 # libraries to link to
39 SET(_link_LIBRARIES
40   ${QT_LIBRARIES} ${CAS_KERNEL} ${CAS_VIEWER}
41   qtx suit SalomeObject SalomePrs OCCViewer
42 )
43
44 # --- headers ---
45
46 # header files / to be processed by moc
47 SET(_moc_HEADERS   
48   SOCC_ViewModel.h
49   SOCC_ViewWindow.h
50 )
51
52 # header files / no moc processing
53 SET(_other_HEADERS
54   SOCC.h
55   SOCC_Prs.h
56 )
57
58 # header files / to install
59 SET(SOCC_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
60
61 # --- sources ---
62
63 # sources / moc wrappings
64 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
65
66 # sources / static
67 SET(_other_SOURCES
68   SOCC_Prs.cxx
69   SOCC_ViewModel.cxx
70   SOCC_ViewWindow.cxx
71 )
72
73 # sources / to compile
74 SET(SOCC_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
75
76 # --- rules ---
77
78 ADD_LIBRARY(SOCC ${SOCC_SOURCES})
79 TARGET_LINK_LIBRARIES(SOCC ${_link_LIBRARIES})
80 INSTALL(TARGETS SOCC EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
81
82 INSTALL(FILES ${SOCC_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})