Commit 0561940d authored by Wayne Stambaugh's avatar Wayne Stambaugh

Fix CMake warning caused by removal of boost dependency when not actually...

Fix CMake warning caused by removal of boost dependency when not actually building boost from source.
parent 835bb37b
......@@ -531,6 +531,10 @@ if( KICAD_SKIP_BOOST )
message( FATAL_ERROR "Boost 1.54+ libraries are required." )
endif()
# Keeps CMake from complaining about undefined boost dependencies even though Boost was
# found. Sigh!!!!!
add_custom_target( boost )
message( WARNING "
WARNING: You decided to skip building boost library.
KiCad developers strongly advise you to build the bundled boost library, as it is known to work with KiCad.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment