1 # Copyright (C) 2012-2023 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 # additional include directories
27 ${PYTHON_INCLUDE_DIRS}
28 ${PTHREAD_INCLUDE_DIR}
30 ${PROJECT_SOURCE_DIR}/src/Qtx
31 ${PROJECT_SOURCE_DIR}/src/SUIT
32 ${PROJECT_SOURCE_DIR}/src/Style
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(${QT_DEFINITIONS} ${PYTHON_DEFINITIONS})
38 # libraries to link to
39 SET(_link_LIBRARIES ${PLATFORM_LIBS} ${QT_LIBRARIES} qtx suit SalomeStyle)
40 IF(SALOME_USE_PYCONSOLE)
41 LIST(APPEND _link_LIBRARIES ${PYTHON_LIBRARIES})
46 # header files / to be processed by moc
51 # header files / internal
52 # no processing currently: TODO: check for MSVS project
54 SUITApp_init_python.hxx
57 # header files / no moc processing
58 IF(SALOME_USE_PYCONSOLE)
59 SET(_other_HEADERS SUITApp_init_python.hxx)
62 # header files / to install
63 SET(SUITApp_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
67 # resource files / to be processed by lrelease
69 resources/SUITApp_msg_en.ts
70 resources/SUITApp_msg_fr.ts
71 resources/SUITApp_msg_ja.ts
76 # sources / moc wrappings
77 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
81 SUITApp_Application.cxx
83 IF(SALOME_USE_PYCONSOLE)
84 LIST(APPEND _other_SOURCES SUITApp_init_python.cxx)
87 # sources / to compile
88 SET(SUITApp_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
92 ADD_LIBRARY(SUITApp ${SUITApp_SOURCES})
93 TARGET_LINK_LIBRARIES(SUITApp ${_link_LIBRARIES})
94 INSTALL(TARGETS SUITApp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
96 ADD_EXECUTABLE(suitexe SUITApp.cxx)
97 TARGET_LINK_LIBRARIES(suitexe ${_link_LIBRARIES} SUITApp)
98 INSTALL(TARGETS suitexe EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_BINS})
100 INSTALL(FILES ${SUITApp_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
101 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")