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