Salome HOME
c7e5f8653fe67dee818095ab7a5e35ad28938f09
[modules/gui.git] / src / CAF / 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   ${QT_INCLUDES}
27   ${CAS_INCLUDE_DIRS}
28   ${KERNEL_INCLUDE_DIRS}
29   ${PROJECT_SOURCE_DIR}/src/Qtx
30   ${PROJECT_SOURCE_DIR}/src/SUIT
31   ${PROJECT_SOURCE_DIR}/src/STD
32 )
33
34 # additional preprocessor / compiler flags
35 ADD_DEFINITIONS(${CAS_DEFINITIONS} ${QT_DEFINITIONS})
36
37 # libraries to link to
38 SET(_link_LIBRARIES ${QT_LIBRARIES} ${CAS_OCAF} ${CAS_OCAFVIS} qtx suit std)
39
40 # --- headers ---
41
42 # header files / to be processed by moc
43 SET(_moc_HEADERS
44   CAF_Application.h
45   CAF_Operation.h
46   CAF_Study.h
47 )
48
49 # header files / no moc processing
50 SET(_other_HEADERS
51   CAF.h
52   CAF_Tools.h
53 )
54
55 # header files / to install
56 SET(caf_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
57
58 # --- resources ---
59
60 # resource files / to be processed by lrelease
61 SET(_ts_RESOURCES
62   resources/CAF_msg_en.ts
63   resources/CAF_msg_fr.ts
64   resources/CAF_msg_ja.ts
65 )
66
67 # --- sources ---
68
69 # sources / moc wrappings
70 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
71
72 # sources / static
73 SET(_other_SOURCES
74   CAF_Application.cxx
75   CAF_Operation.cxx
76   CAF_Study.cxx
77   CAF_Tools.cxx
78 )
79
80 # sources / to compile
81 SET(caf_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
82
83 # --- rules ---
84
85 ADD_LIBRARY(caf ${caf_SOURCES})
86 TARGET_LINK_LIBRARIES(caf ${QT_LIBRARIES} ${_link_LIBRARIES})
87 INSTALL(TARGETS caf EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
88
89 INSTALL(FILES ${caf_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
90 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")