Salome HOME
Copyright update 2022
[modules/gui.git] / src / SOCC / CMakeLists.txt
1 # Copyright (C) 2012-2022  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(UseQtExt)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${OpenCASCADE_INCLUDE_DIR}
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   ${PROJECT_SOURCE_DIR}/src/ViewerData
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(${QT_DEFINITIONS} ${OpenCASCADE_DEFINITIONS} ${OGL_DEFINITIONS})
38
39 # libraries to link to
40 SET(_link_LIBRARIES
41   ${QT_LIBRARIES} ${OpenCASCADE_FoundationClasses_LIBRARIES} ${OpenCASCADE_Visualization_LIBRARIES}
42   qtx suit SalomeObject SalomePrs OCCViewer
43 )
44
45 # --- headers ---
46
47 # header files / to be processed by moc
48 SET(_moc_HEADERS   
49   SOCC_ViewModel.h
50   SOCC_ViewWindow.h
51 )
52
53 # header files / no moc processing
54 SET(_other_HEADERS
55   SOCC.h
56   SOCC_Prs.h
57 )
58
59 # header files / to install
60 SET(SOCC_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
61
62 # --- sources ---
63
64 # sources / moc wrappings
65 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
66
67 # sources / static
68 SET(_other_SOURCES
69   SOCC_Prs.cxx
70   SOCC_ViewModel.cxx
71   SOCC_ViewWindow.cxx
72 )
73
74 # sources / to compile
75 SET(SOCC_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
76
77 # --- rules ---
78
79 ADD_LIBRARY(SOCC ${SOCC_SOURCES})
80 TARGET_LINK_LIBRARIES(SOCC ${_link_LIBRARIES})
81 INSTALL(TARGETS SOCC EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
82
83 INSTALL(FILES ${SOCC_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})