← Back to team overview

kicad-developers team mailing list archive

[PATCH 02/16] Add missing dependency github_plugin -> pcbcommon

 

The GitHub plugin needs the generated PCB parser code, so introduce an
artificial dependency.
---
 pcbnew/CMakeLists.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt
index e77cbd9..aea5469 100644
--- a/pcbnew/CMakeLists.txt
+++ b/pcbnew/CMakeLists.txt
@@ -534,6 +534,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