Skip to content
Snippets Groups Projects
Commit 3d58f521 authored by Chris Harris's avatar Chris Harris
Browse files

Ensure ParaView_BINARY_DIR is quoted

When appending ParaView_BINARY_DIR to VTK_INCLUDE_DIRS the property
must be quoted. Build directories with spaces in path will cause issues
otherwise!
parent 34ed5de3
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ include("${VTK_CONFIG_FILE}")
if (__pv_install_tree)
else()
list(APPEND VTK_INCLUDE_DIRS @ParaView_BINARY_DIR@)
list(APPEND VTK_INCLUDE_DIRS "@ParaView_BINARY_DIR@")
endif()
# unless using external vtk (when we start supporting it, that is)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment