Salome HOME
Updated copyright comment
[modules/gui.git] / src / SalomeApp / pluginsdemo / CMakeLists.txt
old mode 100755 (executable)
new mode 100644 (file)
index aac1491..3834fd9
@@ -1,9 +1,9 @@
-# Copyright (C) 2012  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2012-2024  CEA, EDF, 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
 # variable *_ROOT_DIR).  
 #
 
-INCLUDE(${KERNEL_ROOT_DIR}/salome_adm/cmake_files/SalomeMacros.cmake)
+INCLUDE(UseQtExt)
+INCLUDE(UsePyQt)
 
-SET(plugins_PYTHON
-  salome_plugins.py
-  smesh_plugins.py
+# --- resources ---
+
+# uic files / to be processed by pyuic 
+SET(_pyuic_FILES
+  minmax.ui
+)
+
+# scripts / pyuic wrappings
+PYQT_WRAP_UIC(_pyuic_SCRIPTS ${_pyuic_FILES} TARGET_NAME _target_name_pyuic)
+
+# --- scripts ---
+
+# scripts / static
+# TODO: process UIC files via PyQt pyuic tool, see UsePyQt.cmake
+SET(_plugins_SCRIPTS
+  minmax_plugin.py
   trihedron.py
   tubedialog_ui.py
   tubedialog.py
   tubebuilder.py
+  salome_plugins.py
+  smesh_plugins.py
+)
+
+SET(_helper_SCRIPTS
   xalome.py
-  minmax_dialog.py
-  minmax_plugin.py
 )
 
-SALOME_INSTALL_SCRIPTS("${plugins_PYTHON}" ${GUI_salomepluginsdir}/demo DEF_PERMS)
+# --- rules ---
+
+SALOME_INSTALL_SCRIPTS("${_helper_SCRIPTS}" ${SALOME_INSTALL_PYTHON})
+SALOME_INSTALL_SCRIPTS("${_plugins_SCRIPTS}" ${SALOME_GUI_INSTALL_PLUGINS}/demo DEF_PERMS)
+SALOME_INSTALL_SCRIPTS("${_pyuic_SCRIPTS}" ${SALOME_GUI_INSTALL_PLUGINS}/demo DEF_PERMS TARGET_NAME _target_name_pyuic_py)
+# add dependency of compiled py files on uic files in order
+# to avoid races problems when compiling in parallel
+ADD_DEPENDENCIES(${_target_name_pyuic_py} ${_target_name_pyuic})