X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCollectionPlugin%2FCMakeLists.txt;h=d383ace114368b75e2831039c10583e96cd3338a;hb=5819f1698a736a364b7ee6fcd2a94d6a27df7216;hp=c1b22136e81a2ee841c4aa599481ed01095a0f5c;hpb=88712d404a18f89824ce7d0219cdbbd8097163dd;p=modules%2Fshaper.git diff --git a/src/CollectionPlugin/CMakeLists.txt b/src/CollectionPlugin/CMakeLists.txt index c1b22136e..d383ace11 100644 --- a/src/CollectionPlugin/CMakeLists.txt +++ b/src/CollectionPlugin/CMakeLists.txt @@ -1,24 +1,54 @@ -## Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> +## 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(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 CollectionPlugin.h CollectionPlugin_Plugin.h CollectionPlugin_Group.h CollectionPlugin_Field.h - CollectionPlugin_WidgetCreator.h - CollectionPlugin_WidgetField.h + CollectionPlugin_WidgetCreator.h + CollectionPlugin_WidgetField.h + CollectionPlugin_Validators.h +) + +SET(PROJECT_MOC_HEADERS + CollectionPlugin_WidgetField.h ) SET(PROJECT_SOURCES CollectionPlugin_Plugin.cpp CollectionPlugin_Group.cpp CollectionPlugin_Field.cpp - CollectionPlugin_WidgetCreator.cpp - CollectionPlugin_WidgetField.cpp + CollectionPlugin_WidgetCreator.cpp + CollectionPlugin_WidgetField.cpp + CollectionPlugin_Validators.cpp ) SET(XML_RESOURCES @@ -30,6 +60,12 @@ SET(TEXT_RESOURCES CollectionPlugin_msg_en.ts ) +# sources / moc wrappings +QT_WRAP_MOC(PROJECT_AUTOMOC ${PROJECT_MOC_HEADERS}) + +#QT5_ADD_TRANSLATION(QM_RESOURCES ${TEXT_RESOURCES}) + +SOURCE_GROUP ("Generated Files" FILES ${PROJECT_AUTOMOC} ${PROJECT_COMPILED_RESOURCES} ${QM_RESOURCES}) SOURCE_GROUP ("Resource Files" FILES ${TEXT_RESOURCES}) @@ -41,7 +77,7 @@ INCLUDE_DIRECTORIES( ../Events ../ModuleBase ../Config - ${CAS_INCLUDE_DIRS} + ${OpenCASCADE_INCLUDE_DIR} ) SET(PROJECT_LIBRARIES @@ -53,8 +89,13 @@ SET(PROJECT_LIBRARIES ModuleBase ) -ADD_DEFINITIONS(-DCOLLECTIONPLUGIN_EXPORTS ${CAS_DEFINITIONS}) -ADD_LIBRARY(CollectionPlugin MODULE ${PROJECT_SOURCES} ${PROJECT_HEADERS} ${XML_RESOURCES} ${TEXT_RESOURCES}) +ADD_DEFINITIONS(-DCOLLECTIONPLUGIN_EXPORTS ${OpenCASCADE_DEFINITIONS}) +ADD_LIBRARY(CollectionPlugin MODULE + ${PROJECT_SOURCES} + ${PROJECT_HEADERS} + ${XML_RESOURCES} + ${TEXT_RESOURCES} + ${PROJECT_AUTOMOC}) TARGET_LINK_LIBRARIES(CollectionPlugin ${PROJECT_LIBRARIES}) INSTALL(TARGETS CollectionPlugin DESTINATION ${SHAPER_INSTALL_PLUGIN_FILES}) @@ -65,4 +106,8 @@ INSTALL(FILES ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}) ADD_UNIT_TESTS( TestGroup.py TestField.py + TestGroup1799.py + TestGroupMove.py + TestGroupMove2.py + TestGroupShareTopology.py )