X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FLogWindow%2FCMakeLists.txt;h=1004586042606cb7e4022fbc4fc6f77958822363;hb=64205612db5db55a3ec1c65bee46c3e010dd5d1e;hp=6497de83cdd34b11171a56b9a7b8f1eff4ee2e39;hpb=bb8609caf7881d966fbb88dec0a7822736da93f5;p=modules%2Fgui.git diff --git a/src/LogWindow/CMakeLists.txt b/src/LogWindow/CMakeLists.txt index 6497de83c..100458604 100755 --- a/src/LogWindow/CMakeLists.txt +++ b/src/LogWindow/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,28 +17,56 @@ # 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 - ${CMAKE_CURRENT_SOURCE_DIR}/../SUIT + ${PROJECT_SOURCE_DIR}/src/Qtx + ${PROJECT_SOURCE_DIR}/src/SUIT ) -SET(GUI_HEADERS LogWindow.h) -QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS}) +# additional preprocessor / compiler flags +ADD_DEFINITIONS(${QT_DEFINITIONS}) + +# libraries to link to +SET(_link_LIBRARIES ${QT_LIBRARIES} qtx suit) + +# --- headers --- + +# header files / to be processed by moc +SET(_moc_HEADERS LogWindow.h) + +# header files / to install +SET(LogWindow_HEADERS ${_moc_HEADERS}) -SET(GUITS_SOURCES +# --- resources --- + +# resource files / to be processed by lrelease +SET(_ts_RESOURCES resources/LogWindow_msg_en.ts resources/LogWindow_msg_fr.ts + resources/LogWindow_msg_ja.ts ) -ADD_DEFINITIONS(${QT_DEFINITIONS}) +# --- sources --- + +# sources / moc wrappings +QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS}) + +# sources / static +SET(_other_SOURCES LogWindow.cxx) + +# sources / to compile +SET(LogWindow_SOURCES ${_other_SOURCES} ${_moc_SOURCES}) + +# --- rules --- -ADD_LIBRARY(LogWindow LogWindow.cxx ${GUI_HEADERS_MOC}) -TARGET_LINK_LIBRARIES(LogWindow qtx suit ${QT_LIBRARIES}) -INSTALL(TARGETS LogWindow DESTINATION ${GUI_salomelib_LIBS}) +ADD_LIBRARY(LogWindow ${LogWindow_SOURCES}) +TARGET_LINK_LIBRARIES(LogWindow ${_link_LIBRARIES}) +INSTALL(TARGETS LogWindow 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 ${LogWindow_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}) +QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")