Salome HOME
649bfd7904a47e27956a45a9d63754140cfd65f5
[samples/hello.git] / src / HELLOGUI / CMakeLists.txt
1 # Copyright (C) 2012-2016  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 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${QT_INCLUDES}
26   ${CAS_INCLUDE_DIRS}
27   ${PYTHON_INCLUDE_DIRS}
28   ${Boost_INCLUDE_DIRS}
29   ${OMNIORB_INCLUDE_DIR}
30   ${KERNEL_INCLUDE_DIRS}
31   ${GUI_INCLUDE_DIRS}
32   ${PROJECT_BINARY_DIR}
33   ${PROJECT_BINARY_DIR}/idl
34   ${PROJECT_SOURCE_DIR}/src/HELLO
35 )
36
37 # additional preprocessor / compiler flags
38 ADD_DEFINITIONS(
39   ${QT_DEFINITIONS}
40   ${OMNIORB_DEFINITIONS}
41   ${CAS_DEFINITIONS}
42   ${BOOST_DEFINITIONS}
43   ${PYTHON_DEFINITIONS}
44 )
45
46 # libraries to link to
47 SET(_link_LIBRARIES
48   ${KERNEL_SalomeLifeCycleCORBA}
49   ${KERNEL_SalomeDS}
50   ${GUI_SalomeApp}
51   HELLOEngine
52 )
53
54 # --- headers ---
55
56 # header files / to be processed by moc
57 SET(HELLOGUI_HEADERS
58   HELLOGUI.h
59 )
60
61 # --- sources ---
62
63 # sources / moc wrappings
64 QT_WRAP_MOC(_moc_SOURCES ${HELLOGUI_HEADERS})
65
66
67 # sources / static
68 SET(_other_SOURCES
69   HELLOGUI.cxx
70 )
71
72 # sources / to compile
73 SET(HELLOGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
74
75 # --- resources ---
76
77 # resource files / to be processed by lrelease
78 SET(_ts_RESOURCES
79   HELLO_icons.ts
80   HELLO_msg_en.ts
81   HELLO_msg_fr.ts
82   HELLO_msg_ja.ts
83
84
85 # --- rules ---
86
87 ADD_LIBRARY(HELLO ${HELLOGUI_SOURCES})
88 TARGET_LINK_LIBRARIES(HELLO SalomeIDLHELLO ${_link_LIBRARIES} )
89 INSTALL(TARGETS HELLO EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
90
91 INSTALL(FILES ${HELLOGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
92 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HELLO_INSTALL_RES_DATA}")