kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #24519
[PATCH 2/4] Add missing dependency github_plugin -> pcbcommon
The GitHub plugin needs the generated PCB parser code.
---
pcbnew/CMakeLists.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt
index 1249069..6fa6ede 100644
--- a/pcbnew/CMakeLists.txt
+++ b/pcbnew/CMakeLists.txt
@@ -536,6 +536,8 @@ add_subdirectory( pcad2kicadpcb_plugin )
if( BUILD_GITHUB_PLUGIN )
add_subdirectory( github )
add_dependencies( github_plugin lib-dependencies )
+ # github_plugin depends on make_lexer outputs in common
+ add_dependencies( github_plugin pcbcommon )
endif()
Follow ups
References