Skip to content
Snippets Groups Projects
Commit ccd16099 authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

CMake generator: Test dependency is also a dependency...

parent e7e278b3
No related branches found
No related tags found
No related merge requests found
Pipeline #26857 passed
...@@ -176,7 +176,7 @@ class Project: ...@@ -176,7 +176,7 @@ class Project:
   
while len(stack) > 0: while len(stack) > 0:
c = stack.pop() c = stack.pop()
for dep in PROJECTS[c].dependencies: for dep in PROJECTS[c].dependencies + PROJECTS[c].dependencies_test:
if dep not in visited: if dep not in visited:
visited.add(dep) visited.add(dep)
stack.append(dep) stack.append(dep)
......
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