Skip to content
Snippets Groups Projects
Commit 0a90fe94 authored by Bill Lorensen's avatar Bill Lorensen
Browse files

BUG: Remote hidden file regex was incorrect

First, the remote module glob produces full file names.

Second, the regex was excluing all remote modules.

I tested the new regexp with a hidden file and it works.
parent 2cb1ab32
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ include(vtkModuleRemote)
file(GLOB remotes "*.remote.cmake")
foreach(remote_module ${remotes})
if (remote_module MATCHES "^\.")
if (remote_module MATCHES "/\\.")
continue ()
endif ()
include(${remote_module})
......
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