ParaView plugin compilation: syntax adjustments for newer versions of CMake

This commit is contained in:
Martin Beaudoin 2018-07-01 22:51:57 -04:00
parent 903e06f5ab
commit 1c5b0bc3cc

View file

@ -65,13 +65,24 @@ ADD_PARAVIEW_PLUGIN(
if(NOT FOAM_FOUND)
# Config when compiling FOAM library with wmake
TARGET_LINK_LIBRARIES(
PVFoamReader_SM
foam
finiteVolume
vtkPVFoam
pqCore
)
if(${CMAKE_VERSION} VERSION_LESS "2.8.12")
TARGET_LINK_LIBRARIES(
PVFoamReader_SM
foam
finiteVolume
vtkPVFoam
pqCore
)
else()
TARGET_LINK_LIBRARIES(
PVFoamReader_SM
PUBLIC foam
finiteVolume
vtkPVFoam
pqCore
)
endif()
else()
# Config when compiling FOAM library with cmake