ENH: add versioning to paraview plugin support libraries (issue #370)

- use "-pvMAJ.MIN" suffix for similarity with the paraview convention

- use sentinel file to ensure clean change of intermediate targets

- ensure all library files are being properly removed
This commit is contained in:
Mark Olesen
2017-01-05 16:22:07 +01:00
parent 2c96ec7550
commit 7a90f5e6fb
16 changed files with 260 additions and 36 deletions

View File

@ -0,0 +1,8 @@
#-------------------------------*- makefile -*---------------------------------
# paraview values
# major.minor: eg, /path/paraview-5.0 -> 5.0
#
ParaView_MAJOR := $(shell echo $(ParaView_INCLUDE_DIR) | sed -e 's/^.*-//')
#------------------------------------------------------------------------------