From f9659a7e7c5d1636fc6bbbf051afca077adaecdc Mon Sep 17 00:00:00 2001 From: Mark Roszko Date: Thu, 20 Oct 2022 18:20:27 +0000 Subject: [PATCH] Fix kicad-cli not being installed at all --- kicad/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kicad/CMakeLists.txt b/kicad/CMakeLists.txt index 8d8fe825fb..a101e4c12b 100644 --- a/kicad/CMakeLists.txt +++ b/kicad/CMakeLists.txt @@ -142,6 +142,13 @@ install( TARGETS kicad COMPONENT binary ) +if( NOT APPLE ) + install( TARGETS kicad-cli + DESTINATION ${KICAD_BIN} + COMPONENT binary + ) +endif() + if( KICAD_WIN32_INSTALL_PDBS ) # Get the PDBs to copy over for MSVC install(FILES $ DESTINATION ${KICAD_BIN})