1 # Copyright (C) 2012-2015 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 ${PROJECT_SOURCE_DIR}/src/Qtx
30 # additional preprocessor / compiler flags
31 ADD_DEFINITIONS(${QT_DEFINITIONS})
33 # libraries to link to
34 SET(_link_LIBRARIES ${QT_LIBRARIES} qtx)
38 # header files / to be processed by moc
39 SET(_moc_HEADERS OB_Browser.h)
41 # header files / no moc processing
42 SET(_other_HEADERS OB.h)
44 # header files / to install
45 SET(ObjBrowser_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
49 # resource files / to be processed by lrelease
51 resources/OB_msg_en.ts
52 resources/OB_msg_fr.ts
53 resources/OB_msg_ja.ts
58 # sources / moc wrappings
59 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
62 SET(_other_SOURCES OB_Browser.cxx)
64 # sources / to compile
65 SET(ObjBrowser_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
69 ADD_LIBRARY(ObjBrowser ${ObjBrowser_SOURCES})
70 TARGET_LINK_LIBRARIES(ObjBrowser ${_link_LIBRARIES})
71 INSTALL(TARGETS ObjBrowser EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
73 INSTALL(FILES ${ObjBrowser_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
74 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")