← Back to team overview

kicad-developers team mailing list archive

[PATCH] Remove remaining references to KICAD_SKIP_BOOST

 

Hi,

this removes two leftover references to KICAD_SKIP_BOOST.

   Simon

---
 CMakeModules/download_avhttp.cmake     | 9 +--------
 Documentation/development/compiling.md | 8 --------
 2 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/CMakeModules/download_avhttp.cmake b/CMakeModules/download_avhttp.cmake
index abc52b7..3186105 100644
--- a/CMakeModules/download_avhttp.cmake
+++ b/CMakeModules/download_avhttp.cmake
@@ -38,13 +38,6 @@
 # Where the library is to be installed.
 set( PREFIX ${DOWNLOAD_DIR}/avhttp )
 
-if( KICAD_SKIP_BOOST )
-    set( AVHTTP_DEPEND "" )
-else()
-    set( AVHTTP_DEPEND "boost" )
-endif()
-
-
 # Install the AVHTTP header only library ${PREFIX}
 ExternalProject_Add( avhttp
     PREFIX          ${PREFIX}
@@ -52,7 +45,7 @@ ExternalProject_Add( avhttp
 
     # grab it from a local zip file for now, cmake caller's source dir
     URL             ${CMAKE_CURRENT_SOURCE_DIR}/avhttp-master.zip
-    DEPENDS         ${AVHTTP_DEPEND}
+    DEPENDS         "boost"
 
     CONFIGURE_COMMAND ""
 
diff --git a/Documentation/development/compiling.md b/Documentation/development/compiling.md
index 9cfb203..cf26851 100644
--- a/Documentation/development/compiling.md
+++ b/Documentation/development/compiling.md
@@ -158,14 +158,6 @@ used for OSX builds only and is disabled by default.
 The KICAD_BUILD_DYNAMIC option is used to build KiCad with dynamic libraries.  This option is
 used for OSX only and is disabled by default.
 
-## Build with System Boost  ## {#boost_opt}
-
-The KICAD_SKIP_BOOST option allow you to use the Boost libraries installed on your system to
-be used instead of downloading Boost 1.54 and building a custom version specifically for
-building KiCad.  It is high recommended that you enable this option on Linux and use Boost
-version 1.56 or greater.  On other platforms you mileage may vary.  This option is disabled
-by default.
-
 ## OSX Dependency Builder ## {#osx_deps_opt}
 
 The USE_OSX_DEPS_BUILDER option forces the build configuration to download and build the

Follow ups