]> SALOME platform Git repositories - modules/gui.git/blob - src/SUITApp/CMakeLists.txt
Salome HOME
CMake build procedure improvements
[modules/gui.git] / src / SUITApp / 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   ${PYTHON_INCLUDE_DIRS}
28   ${PROJECT_BINARY_DIR}
29   ${PROJECT_SOURCE_DIR}/src/Qtx
30   ${PROJECT_SOURCE_DIR}/src/SUIT
31   ${PROJECT_SOURCE_DIR}/src/Style
32 )
33
34 # additional preprocessor / compiler flags
35 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
36 IF(SALOME_USE_PYCONSOLE)
37   ADD_DEFINITIONS("-DSUIT_ENABLE_PYTHON")
38 ENDIF()
39 IF(ENABLE_TESTRECORDER)
40   ADD_DEFINITIONS("-DENABLE_TESTRECORDER ${TESTRECORDER_DEFINITIONS}")
41 ENDIF()
42
43 # libraries to link to
44 SET(_link_LIBRARIES ${PLATFORM_LIBS} ${QT_LIBRARIES} qtx suit SalomeStyle)
45 IF(SALOME_USE_PYCONSOLE)
46   LIST(APPEND _link_LIBRARIES ${PYTHON_LIBRARIES})
47 ENDIF()
48 IF(ENABLE_TESTRECORDER)
49   LIST(APPEND _link_LIBRARIES ${TESTRECORDER_LIBS})
50 ENDIF()
51
52 # --- headers ---
53
54 # header files / to be processed by moc
55 SET(_moc_HEADERS   
56   SUITApp_Application.h
57 )
58
59 # header files / internal
60 # no processing currently: TODO: check for MSVS project
61 SET(_internal_HEADERS
62   SUITApp_init_python.hxx
63 )
64
65 # header files / no moc processing
66 IF(SALOME_USE_PYCONSOLE)
67   SET(_other_HEADERS SUITApp_init_python.hxx)
68 ENDIF()
69
70 # header files / to install
71 SET(SUITApp_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
72
73 # --- resources ---
74
75 # resource files / to be processed by lrelease
76 SET(_ts_RESOURCES
77   resources/SUITApp_msg_en.ts
78   resources/SUITApp_msg_fr.ts
79   resources/SUITApp_msg_ja.ts
80 )
81
82 # --- sources ---
83
84 # sources / moc wrappings
85 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
86
87 # sources / static
88 SET(_other_SOURCES
89   SUITApp_Application.cxx
90 )
91 IF(SALOME_USE_PYCONSOLE)
92   LIST(APPEND _other_SOURCES SUITApp_init_python.cxx)
93 ENDIF()
94
95 # sources / to compile
96 SET(SUITApp_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
97
98 # --- rules ---
99
100 ADD_LIBRARY(SUITApp ${SUITApp_SOURCES})
101 TARGET_LINK_LIBRARIES(SUITApp ${_link_LIBRARIES})
102 INSTALL(TARGETS SUITApp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
103
104 ADD_EXECUTABLE(TestSUITApp SUITApp.cxx)
105 SET_TARGET_PROPERTIES(TestSUITApp PROPERTIES OUTPUT_NAME "SUITApp")
106 TARGET_LINK_LIBRARIES(TestSUITApp ${_link_LIBRARIES} SUITApp)
107 INSTALL(TARGETS TestSUITApp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_BINS})
108
109 INSTALL(FILES ${SUITApp_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
110 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")