Salome HOME
Merge from V6_main (04/10/2012)
[modules/gui.git] / src / SOCC / CMakeLists.txt
1 # Copyright (C) 2012  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_INCLUDE_DIRS}
23   ${BOOST_INCLUDE_DIRS}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${KERNEL_ROOT_DIR}/include/salome
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_FLAGS "${QT_DEFINITIONS} ${CAS_DEFINITIONS} ${BOOST_DEFINITIONS} ${PLATFORM_DEFINITIONS}")
34 SET(COMMON_LIBS ${QT_LIBS} qtx suit SalomeObject SalomePrs OCCViewer)
35
36 SET(GUI_HEADERS   
37   SOCC_ViewModel.h
38   SOCC_ViewWindow.h
39 )
40 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
41
42 SET(SOCC_SOURCES
43   SOCC_ViewModel.cxx
44   SOCC_Prs.cxx
45   SOCC_ViewWindow.cxx
46 )
47
48 ADD_LIBRARY(SOCC SHARED ${SOCC_SOURCES} ${GUI_HEADERS_MOC})
49 SET_TARGET_PROPERTIES(SOCC PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
50 TARGET_LINK_LIBRARIES(SOCC ${COMMON_LIBS})
51 INSTALL(TARGETS SOCC DESTINATION ${GUI_salomelib_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 ${GUI_salomeinclude_HEADERS})