Difference between revisions of "KiCadBuildQuickRef"

From Code::Blocks
(21 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:User Documentation]]
 
[[Category:User Documentation]]
== How-to build KiCad with Code::Blocks ==
+
== How-to build KiCad with MSys2 Code::Blocks ==
(by Stahta01)<br>
+
by Tim Stahlhut (stahta01)<br>
 
===Requirements===
 
===Requirements===
- wxWidgets<br>
+
- KiCAD source<br>
- MinGW GCC<br>
+
- KiCAD depends<br>
- zlib<br>
+
- GCC Toolchain<br>
- Boost C++<br>
 
 
- CMake<br>
 
- CMake<br>
 
- Code::Blocks<br>
 
- Code::Blocks<br>
  
===MinGW GCC Compiler steps===
+
==MSys2 Mingw Environment package install commands==
  
====install "mingw".====
+
<syntaxhighlight lang="bash">
* [[MinGW installation]]: How to install MinGW.
+
pacman -S --needed git ${MINGW_PACKAGE_PREFIX}-cmake ${MINGW_PACKAGE_PREFIX}-gcc \
====Install zlib.====
+
  ${MINGW_PACKAGE_PREFIX}-boost \
For more zlib info see http://gnuwin32.sourceforge.net/packages/zlib.htm.<br>
+
  ${MINGW_PACKAGE_PREFIX}-pkgconf \
Download Developer files for Zlib from http://gnuwin32.sourceforge.net/downlinks/zlib-lib-zip.php<br>
+
  ${MINGW_PACKAGE_PREFIX}-codeblocks \
Extract the files from zlib-1.2.3-lib.zip into your MinGW base folder.<br>
+
  ${MINGW_PACKAGE_PREFIX}-swig
Download Binaries files for Zlib from http://gnuwin32.sourceforge.net/downlinks/zlib-bin-zip.php<br>
 
Extract the DLL from zlib-1.2.3-bin.zip into any folder that is in your path; like your MinGW bin folder.
 
  
====Install Boost C++ Template Libraries (*.hpp files)====
+
pacman -S --needed ${MINGW_PACKAGE_PREFIX}-opencascade \
* [[BoostWindowsQuickRef]]: A beginner's quick reference for setting up Boost with Code::Blocks in Windows
+
  ${MINGW_PACKAGE_PREFIX}-glm \
 +
  ${MINGW_PACKAGE_PREFIX}-libgit2 \
 +
  ${MINGW_PACKAGE_PREFIX}-ngspice \
 +
  ${MINGW_PACKAGE_PREFIX}-nng \
 +
  ${MINGW_PACKAGE_PREFIX}-protobuf \
 +
  ${MINGW_PACKAGE_PREFIX}-wxPython
  
===wxWidgets Steps===
+
</syntaxhighlight>
* [[Compiling wxWidgets 2.8.9 Monolithic Build with openGL for Windows]]: How to install and Build wxWidgets.
 
  
 
===Build KiCad using CMake and Code::Blocks Steps===
 
===Build KiCad using CMake and Code::Blocks Steps===
====Install the kicad source tree.====
 
====Install CMAKE====
 
Download the installation binary for windows from cmake.org.<br>
 
http://www.cmake.org/cmake/resources/software.html<br>
 
http://www.cmake.org/files/v2.6/cmake-2.6.3-win32-x86.exe<br>
 
Install that and choose to add cmake to your path during installation.<br> 
 
You will have to restart and command shells for the new path to take effect.<br>
 
Verify that cmake is in your path by trying to run it from a command prompt.<br>
 
  
====Install Code::Blocks====
+
* Clone git repo<syntaxhighlight lang="bash">
====Use cmake to build the kicad makefiles.====
+
mkdir -p ~/devel && cd ~/devel && \
====Use Code::Blocks to build kicad.====
+
git clone https://github.com/KiCad/kicad-source-mirror.git kicad
 +
 
 +
</syntaxhighlight>
 +
* Create CB Project
 +
<syntaxhighlight lang="bash" line="1">
 +
mkdir -p ~/devel/kicad/cb_build && cd ~/devel/kicad/cb_build && \
 +
cmake \
 +
  -DOCC_INCLUDE_DIR="${MINGW_PREFIX}"/include/opencascade \
 +
  -DKICAD_BUILD_QA_TESTS=OFF \
 +
  -G"CodeBlocks - MinGW Makefiles" .. > log.txt
 +
 
 +
 
 +
</syntaxhighlight>

Revision as of 03:45, 17 May 2025

How-to build KiCad with MSys2 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 git ${MINGW_PACKAGE_PREFIX}-cmake ${MINGW_PACKAGE_PREFIX}-gcc \
  ${MINGW_PACKAGE_PREFIX}-boost \
  ${MINGW_PACKAGE_PREFIX}-pkgconf \
  ${MINGW_PACKAGE_PREFIX}-codeblocks \
  ${MINGW_PACKAGE_PREFIX}-swig

pacman -S --needed ${MINGW_PACKAGE_PREFIX}-opencascade \
  ${MINGW_PACKAGE_PREFIX}-glm \
  ${MINGW_PACKAGE_PREFIX}-libgit2 \
  ${MINGW_PACKAGE_PREFIX}-ngspice \
  ${MINGW_PACKAGE_PREFIX}-nng \
  ${MINGW_PACKAGE_PREFIX}-protobuf \
  ${MINGW_PACKAGE_PREFIX}-wxPython

Build KiCad using CMake and Code::Blocks Steps

  • Clone git repo
    mkdir -p ~/devel && cd ~/devel && \
    git clone https://github.com/KiCad/kicad-source-mirror.git kicad
  • Create CB Project
mkdir -p ~/devel/kicad/cb_build && cd ~/devel/kicad/cb_build && \
cmake \
  -DOCC_INCLUDE_DIR="${MINGW_PREFIX}"/include/opencascade \
  -DKICAD_BUILD_QA_TESTS=OFF \
  -G"CodeBlocks - MinGW Makefiles" .. > log.txt