Salome HOME
Copyright update 2022
[modules/paravis.git] / src / Plugins / DifferenceTimesteps / CMakeLists.txt
index 7951a82af3cc94d01979c3f5a7627448f0eeeeb4..e36f743d9bccd933415a745f42a4ffaa96777d5f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2016  CEA/DEN, EDF R&D
+# Copyright (C) 2010-2022  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
 #
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
-# Author : Maxim Glibin
 
-PROJECT(DifferenceTimesteps)
+cmake_minimum_required(VERSION 3.8)
+project(DifferenceTimesteps)
+find_package(ParaView REQUIRED)
 
-cmake_minimum_required(VERSION 2.8)
+include(GNUInstallDirs)
+set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")
+set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
+set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
 
-FIND_PACKAGE(ParaView REQUIRED)
-INCLUDE(${PARAVIEW_USE_FILE})
+set("_paraview_plugin_default_${CMAKE_PROJECT_NAME}" ON)
+paraview_plugin_scan(
+  ENABLE_BY_DEFAULT YES
+  PLUGIN_FILES      "${CMAKE_CURRENT_SOURCE_DIR}/plugin/paraview.plugin"
+  PROVIDES_PLUGINS  plugins
+  REQUIRES_MODULES  required_modules)
 
-ADD_PARAVIEW_PLUGIN(DifferenceTimesteps "1.0"
-  SERVER_MANAGER_XML DifferenceTimesteps.xml
-  SERVER_MANAGER_SOURCES vtkDifferenceTimestepsFilter.cxx
-  GUI_RESOURCES pqDifferenceTimesteps.qrc
-  )
+foreach(module IN LISTS required_modules)
+  if(NOT TARGET "${module}")
+    message("Missing required module: ${module}")
+    return()
+  endif()
+endforeach()
 
-INSTALL(TARGETS DifferenceTimesteps
-  DESTINATION lib/paraview
-)
+set(BUILD_SHARED_LIBS ON)
+paraview_plugin_build(
+  RUNTIME_DESTINATION "${CMAKE_INSTALL_BINDIR}"
+  LIBRARY_DESTINATION "${CMAKE_INSTALL_LIBDIR}"
+  LIBRARY_SUBDIRECTORY "${PARAVIEW_PLUGIN_SUBDIR}"
+  PLUGINS ${plugins}
+  AUTOLOAD ${plugins})