ParaView plugin compilation: syntax adjustments for newer versions of CMake
This commit is contained in:
parent
903e06f5ab
commit
1c5b0bc3cc
1 changed files with 18 additions and 7 deletions
|
@ -65,6 +65,7 @@ ADD_PARAVIEW_PLUGIN(
|
|||
if(NOT FOAM_FOUND)
|
||||
# Config when compiling FOAM library with wmake
|
||||
|
||||
if(${CMAKE_VERSION} VERSION_LESS "2.8.12")
|
||||
TARGET_LINK_LIBRARIES(
|
||||
PVFoamReader_SM
|
||||
foam
|
||||
|
@ -72,6 +73,16 @@ if(NOT FOAM_FOUND)
|
|||
vtkPVFoam
|
||||
pqCore
|
||||
)
|
||||
else()
|
||||
TARGET_LINK_LIBRARIES(
|
||||
PVFoamReader_SM
|
||||
PUBLIC foam
|
||||
finiteVolume
|
||||
vtkPVFoam
|
||||
pqCore
|
||||
)
|
||||
endif()
|
||||
|
||||
else()
|
||||
# Config when compiling FOAM library with cmake
|
||||
|
||||
|
|
Reference in a new issue