Browse Source

List Boost as a dependency for kicad2step

This is not technically correct (the Boost dependency is introduced through
libcommon), but less invasive as it doesn't pull in libcommon on the linker
command line.
pull/15/head
Simon Richter 7 years ago
committed by John Beard
parent
commit
03bce55403
  1. 2
      utils/kicad2step/CMakeLists.txt

2
utils/kicad2step/CMakeLists.txt

@ -29,7 +29,7 @@ endif( MINGW )
add_executable( kicad2step ${K2S_FILES} )
target_link_libraries( kicad2step ${wxWidgets_LIBRARIES} ${OCC_LIBRARIES} )
target_link_libraries( kicad2step ${wxWidgets_LIBRARIES} ${OCC_LIBRARIES} Boost::boost )
if( APPLE )
# puts binaries into the *.app bundle while linking

Loading…
Cancel
Save