X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParametersPlugin%2FCMakeLists.txt;h=c0baa2be8bfaf870183677fd70969c88c01bcb0f;hb=e675b9eb8df755fff9763560ddf36d5bfeb6fe35;hp=640773727c1fc53d55fff869fc6574de492cdde8;hpb=a8cfbfb436c27ff96edd5c808e9a452c35cef207;p=modules%2Fshaper.git diff --git a/src/ParametersPlugin/CMakeLists.txt b/src/ParametersPlugin/CMakeLists.txt index 640773727..c0baa2be8 100644 --- a/src/ParametersPlugin/CMakeLists.txt +++ b/src/ParametersPlugin/CMakeLists.txt @@ -1,26 +1,53 @@ +## Copyright (C) 2014-2017 CEA/DEN, EDF R&D +## +## 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, 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 +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +## +## See http:##www.salome-platform.org/ or +## email : webmaster.salome@opencascade.com +## + INCLUDE(Common) -INCLUDE(FindPython) INCLUDE(UnitTest) -SET(CMAKE_AUTOMOC ON) +INCLUDE(UseQtExt) + +# additional include directories +INCLUDE_DIRECTORIES(${QT_INCLUDES}) + +# additional preprocessor / compiler flags +ADD_DEFINITIONS(${QT_DEFINITIONS}) SET(PROJECT_HEADERS ParametersPlugin.h ParametersPlugin_Plugin.h ParametersPlugin_Parameter.h - ParametersPlugin_PyInterp.h - ParametersPlugin_Validators.h ParametersPlugin_EvalListener.h + ParametersPlugin_Validators.h ParametersPlugin_WidgetCreator.h ParametersPlugin_ParametersMgr.h ParametersPlugin_WidgetParamsMgr.h ) +SET(PROJECT_MOC_HEADERS + ParametersPlugin_WidgetParamsMgr.h +) + SET(PROJECT_SOURCES ParametersPlugin_Plugin.cpp ParametersPlugin_Parameter.cpp - ParametersPlugin_PyInterp.cpp + ParametersPlugin_EvalListener.cpp ParametersPlugin_Validators.cpp - ParametersPlugin_EvalListener.cpp ParametersPlugin_WidgetCreator.cpp ParametersPlugin_ParametersMgr.cpp ParametersPlugin_WidgetParamsMgr.cpp @@ -36,53 +63,58 @@ INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/Events ${PROJECT_SOURCE_DIR}/src/GeomAPI ${PROJECT_SOURCE_DIR}/src/GeomDataAPI ${PROJECT_SOURCE_DIR}/src/ModuleBase - ${SUIT_INCLUDE} - ${PYTHON_INCLUDE_DIR} ${CAS_INCLUDE_DIRS} ) -MESSAGE(STATUS "PYTHON_LIBRARIES (ParametersPlugin): ${PYTHON_LIBRARIES}") - SET(PROJECT_LIBRARIES Events Config ModelAPI ModuleBase - ${PyInterp} - ${PYTHON_LIBRARIES} ${QT_LIBRARIES} ) -ADD_DEFINITIONS(-DPARAMETERSPLUGIN_EXPORTS -DHAVE_DEBUG_PYTHON ${CAS_DEFINITIONS}) +ADD_DEFINITIONS(-DPARAMETERSPLUGIN_EXPORTS ${CAS_DEFINITIONS}) SET(TEXT_RESOURCES ParametersPlugin_msg_ru.ts + ParametersPlugin_msg_en.ts ) -QT4_CREATE_TRANSLATION(QM_RESOURCES - ${PROJECT_SOURCES} - ${TEXT_RESOURCES} - OPTIONS -extensions cpp -no-recursive - ) +# QT4_CREATE_TRANSLATION(QM_RESOURCES +# ${PROJECT_SOURCES} +# ${TEXT_RESOURCES} +# OPTIONS -extensions cpp -no-recursive +# ) + +#SET(PROJECT_AUTOMOC +# ${CMAKE_CURRENT_BINARY_DIR}/ParametersPlugin_automoc.cpp +#) +# sources / moc wrappings +QT_WRAP_MOC(PROJECT_AUTOMOC ${PROJECT_MOC_HEADERS}) + -SET(PROJECT_AUTOMOC - ${CMAKE_CURRENT_BINARY_DIR}/ParametersPlugin_automoc.cpp -) - - SOURCE_GROUP ("Generated Files" FILES ${PROJECT_AUTOMOC} ${QM_RESOURCES}) SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES}) -ADD_LIBRARY(ParametersPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${QM_RESOURCES}) +ADD_LIBRARY(ParametersPlugin MODULE + ${PROJECT_SOURCES} + ${PROJECT_HEADERS} + ${XML_RESOURCES} + ${TEXT_RESOURCES} + ${QM_RESOURCES} + ${PROJECT_AUTOMOC} +) TARGET_LINK_LIBRARIES(ParametersPlugin ${PROJECT_LIBRARIES}) INSTALL(TARGETS ParametersPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES}) -INSTALL(FILES ${XML_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}) +INSTALL(FILES ${XML_RESOURCES} ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}) INSTALL(FILES ${QM_RESOURCES} DESTINATION ${SHAPER_INSTALL_QM_RESOURCES}) ADD_UNIT_TESTS(TestParameterCreation.py TestParameterRename.py TestParameterChangeValue.py + Test1806.py )