Salome HOME
63a8c63b9bb708c1052ef362be0a44ca28fe012c
[samples/light.git] / src / LIGHTGUI / CMakeLists.txt
1 # Copyright (C) 2013-2022  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 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${QT_INCLUDES}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${PYTHON_INCLUDE_DIRS}
28   ${KERNEL_INCLUDE_DIRS}
29   ${GUI_INCLUDE_DIRS}
30   ${PROJECT_BINARY_DIR}
31 )
32
33 # additional preprocessor / compiler flags
34 ADD_DEFINITIONS(
35   ${QT_DEFINITIONS}
36   ${OpenCASCADE_DEFINITIONS}
37   ${PYTHON_DEFINITIONS}
38 )
39
40 # libraries to link to
41 SET(_link_LIBRARIES
42   ${GUI_LightApp}
43 )
44
45 # --- headers ---
46
47 # header files / to be processed by moc
48 SET(_moc_HEADERS
49   LIGHTGUI.h
50   LIGHTGUI_DataModel.h
51 )
52
53 # header files / no moc processing
54 SET(_other_HEADERS
55   LIGHTGUI_DataObject.h
56   LIGHTGUI_Exports.h
57   LIGHTGUI_Selection.h
58   LIGHTGUI_TextPrs.h
59 )
60
61 # header files / to install
62 SET(LIGHT_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
63
64 # --- sources ---
65
66 # sources / moc wrappings
67 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
68
69 # sources / static
70 SET(_other_SOURCES
71   LIGHTGUI.cxx
72   LIGHTGUI_DataModel.cxx
73   LIGHTGUI_DataObject.cxx
74   LIGHTGUI_Selection.cxx
75   LIGHTGUI_TextPrs.cxx
76 )
77
78 # sources / to compile
79 SET(LIGHT_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
80
81 # --- resources ---
82
83 # resource files / to be processed by lrelease
84 SET(_ts_RESOURCES
85   resources/LIGHT_images.ts
86   resources/LIGHT_msg_en.ts
87   resources/LIGHT_msg_fr.ts
88   resources/LIGHT_msg_ja.ts
89
90
91 # --- rules ---
92
93 ADD_LIBRARY(LIGHT ${LIGHT_SOURCES})
94 TARGET_LINK_LIBRARIES(LIGHT ${_link_LIBRARIES} )
95 INSTALL(TARGETS LIGHT EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
96
97 INSTALL(FILES ${LIGHT_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
98 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_LIGHT_INSTALL_RES_DATA}")