Salome HOME
7e89f1a75649e8a9685d5f5488c109e511ffa901
[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_DIRECTORIES(
21   ${CAS_INCLUDE_DIRS}
22   ${QT_INCLUDES}
23   ${Boost_INCLUDE_DIRS}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${KERNEL_INCLUDE_DIRS}
26   ${CMAKE_CURRENT_SOURCE_DIR}/../SUIT
27   ${CMAKE_CURRENT_SOURCE_DIR}/../OBJECT
28   ${CMAKE_CURRENT_SOURCE_DIR}/../Prs
29   ${CMAKE_CURRENT_SOURCE_DIR}/../OCCViewer
30   ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx
31 )
32
33 SET(COMMON_LIBS ${QT_LIBRARIES} qtx suit SalomeObject SalomePrs OCCViewer)
34
35 SET(GUI_HEADERS   
36   SOCC_ViewModel.h
37   SOCC_ViewWindow.h
38 )
39 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
40
41 SET(SOCC_SOURCES
42   SOCC_ViewModel.cxx
43   SOCC_Prs.cxx
44   SOCC_ViewWindow.cxx
45 )
46
47 ADD_DEFINITIONS(${QT_DEFINITIONS} ${CAS_DEFINITIONS} ${BOOST_DEFINITIONS})
48
49 ADD_LIBRARY(SOCC ${SOCC_SOURCES} ${GUI_HEADERS_MOC})
50 TARGET_LINK_LIBRARIES(SOCC ${COMMON_LIBS})
51 INSTALL(TARGETS SOCC EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
52
53 SET(COMMON_HEADERS_H 
54   SOCC.h
55   SOCC_ViewModel.h
56   SOCC_Prs.h
57   SOCC_ViewWindow.h
58 )
59
60 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${SALOME_INSTALL_HEADERS})