X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FViewerTools%2FCMakeLists.txt;h=8cc34a3c5f1c82f60e08f2c8ee77a452ff20ded8;hb=refs%2Fheads%2Fngr%2Fpython3_dev_pv5.4;hp=4489c942031766dbe3b4334028b1715f71a57fea;hpb=bb8609caf7881d966fbb88dec0a7822736da93f5;p=modules%2Fgui.git diff --git a/src/ViewerTools/CMakeLists.txt b/src/ViewerTools/CMakeLists.txt index 4489c9420..8cc34a3c5 100755 --- a/src/ViewerTools/CMakeLists.txt +++ b/src/ViewerTools/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2012-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2012-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -17,31 +17,66 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # -INCLUDE(${CMAKE_SOURCE_DIR}/adm_local/cmake_files/UseQT4EXT.cmake) +INCLUDE(UseQtExt) +# --- options --- + +# additional include directories INCLUDE_DIRECTORIES( ${QT_INCLUDES} - ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx + ${PROJECT_SOURCE_DIR}/src/Qtx ) -SET(GUI_HEADERS ViewerTools_CubeAxesDlgBase.h ViewerTools_DialogBase.h ViewerTools_FontWidgetBase.h) -QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS}) -SET(ViewerTools_SOURCES - ViewerTools_CubeAxesDlgBase.cxx - ViewerTools_DialogBase.cxx - ViewerTools_FontWidgetBase.cxx + +# additional preprocessor / compiler flags +ADD_DEFINITIONS(${QT_DEFINITIONS}) + +# libraries to link to +SET(_link_LIBRARIES ${QT_LIBRARIES} qtx) + +# --- headers --- + +# header files / to be processed by moc +SET(_moc_HEADERS + ViewerTools_CubeAxesDlgBase.h + ViewerTools_DialogBase.h + ViewerTools_FontWidgetBase.h ) -SET(GUITS_SOURCES +# header files / no moc processing +SET(_other_HEADERS ViewerTools.h) + +# header files / to install +SET(ViewerTools_HEADERS ${_moc_HEADERS} ${_other_HEADERS}) + +# --- resources --- + +# resource files / to be processed by lrelease +SET(_ts_RESOURCES resources/ViewerTools_msg_en.ts resources/ViewerTools_msg_fr.ts + resources/ViewerTools_msg_ja.ts ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) +# --- sources --- + +# sources / moc wrappings +QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS}) + +# sources / static +SET(_other_SOURCES + ViewerTools_CubeAxesDlgBase.cxx + ViewerTools_DialogBase.cxx + ViewerTools_FontWidgetBase.cxx +) + +# sources / to compile +SET(ViewerTools_SOURCES ${_other_SOURCES} ${_moc_SOURCES}) + +# --- rules --- -ADD_LIBRARY(ViewerTools ${ViewerTools_SOURCES} ${GUI_HEADERS_MOC}) -TARGET_LINK_LIBRARIES(ViewerTools qtx ${QT_LIBRARIES}) -INSTALL(TARGETS ViewerTools DESTINATION ${GUI_salomelib_LIBS}) +ADD_LIBRARY(ViewerTools ${ViewerTools_SOURCES}) +TARGET_LINK_LIBRARIES(ViewerTools ${_link_LIBRARIES}) +INSTALL(TARGETS ViewerTools EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS}) -FILE(GLOB COMMON_HEADERS_H "${CMAKE_CURRENT_SOURCE_DIR}/*.h") -INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${GUI_salomeinclude_HEADERS}) -QT4_INSTALL_TS_RESOURCES("${GUITS_SOURCES}" "${GUI_salomeres_DATA}") +INSTALL(FILES ${ViewerTools_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}) +QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")