Salome HOME
bos #26460 Add SSL mode
[samples/atomsolv.git] / src / ATOMSOLVGUI / CMakeLists.txt
1 # Copyright (C) 2013-2021  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   ${PTHREAD_INCLUDE_DIR}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${KERNEL_INCLUDE_DIRS}
28   ${GUI_INCLUDE_DIRS} 
29   ${ATOMGEN_INCLUDE_DIRS}
30   ${QT_INCLUDES}
31   ${OMNIORB_INCLUDE_DIR}
32   ${PROJECT_BINARY_DIR}
33   ${PROJECT_BINARY_DIR}/idl
34   ${CMAKE_CURRENT_SOURCE_DIR}/../ATOMSOLV
35 )
36
37 # additional preprocessor / compiler flags
38 ADD_DEFINITIONS(
39   ${QT_DEFINITIONS}
40   ${OpenCASCADE_DEFINITIONS}
41   ${OMNIORB_DEFINITIONS}
42 )
43
44 # libraries to link to
45 SET(_link_LIBRARIES
46   ${GUI_CAM}
47   ${GUI_LightApp}
48   ${GUI_SalomeApp}
49   ${ATOMGEN_SalomeIDLATOMGEN}
50   ATOMSOLVEngine
51   SalomeIDLATOMSOLV
52 )
53
54 # --- headers ---
55
56 # header files / to be processed by moc
57 SET(_moc_HEADERS
58   ATOMSOLVGUI.h
59   ATOMSOLVGUI_TransparencyDlg.h
60 )
61
62 # header files / no moc processing
63 SET(_other_HEADERS
64   ATOMSOLVGUI_DataModel.h
65   ATOMSOLVGUI_DataObject.h
66   ATOMSOLVGUI_Displayer.h
67   ATOMSOLVGUI_Selection.h
68 )
69
70 # header files / to install
71 SET(ATOMSOLVGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
72
73 # --- sources ---
74
75 # sources / moc wrappings
76 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
77
78 # sources / static
79 SET(_other_SOURCES
80   ATOMSOLVGUI.cxx
81   ATOMSOLVGUI_TransparencyDlg.cxx
82   ATOMSOLVGUI_DataModel.cxx
83   ATOMSOLVGUI_DataObject.cxx
84   ATOMSOLVGUI_Displayer.cxx
85   ATOMSOLVGUI_Selection.cxx
86 )
87
88 # sources / to compile
89 SET(ATOMSOLVGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
90
91 # --- resources ---
92
93 # resource files / to be processed by lrelease
94 SET(_ts_RESOURCES
95   resources/ATOMSOLV_icons.ts
96   resources/ATOMSOLV_msg_en.ts
97   resources/ATOMSOLV_msg_ja.ts
98
99
100 # --- rules ---
101
102 ADD_LIBRARY(ATOMSOLV ${ATOMSOLVGUI_SOURCES})
103 TARGET_LINK_LIBRARIES(ATOMSOLV ${_link_LIBRARIES} )
104 INSTALL(TARGETS ATOMSOLV EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
105
106 INSTALL(FILES ${ATOMSOLVGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
107 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_ATOMSOLV_INSTALL_RES_DATA}")