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