Difference between revisions of "KiCadBuildQuickRef"

From Code::Blocks
(Major re-write started)
Line 8: Line 8:
 
- CMake<br>
 
- CMake<br>
 
- Code::Blocks<br>
 
- Code::Blocks<br>
 +
 +
MSys2 Mingw Environment package install commands
 +
 +
<syntaxhighlight lang="bash">
 +
pacman -S --needed cmake git ${MINGW_PACKAGE_PREFIX}-gcc
 +
 +
pacman -S --needed ${MINGW_PACKAGE_PREFIX}-opencascade \
 +
  ${MINGW_PACKAGE_PREFIX}-wxPython
 +
</syntaxhighlight>
  
 
===Build KiCad using CMake and Code::Blocks Steps===
 
===Build KiCad using CMake and Code::Blocks Steps===

Revision as of 20:52, 16 May 2025

How-to build KiCad with Code::Blocks

by Tim Stahlhut (stahta01)

Requirements

- KiCAD source
- KiCAD depends
- GCC Toolchain
- CMake
- Code::Blocks

MSys2 Mingw Environment package install commands

pacman -S --needed cmake git ${MINGW_PACKAGE_PREFIX}-gcc

pacman -S --needed ${MINGW_PACKAGE_PREFIX}-opencascade \
  ${MINGW_PACKAGE_PREFIX}-wxPython

Build KiCad using CMake and Code::Blocks Steps