Re: [Kicad-developers] Master won't build

2020-08-06 Thread jp charras
Le 07/08/2020 à 05:41, Brian Piccioni a écrit : > FYI I pulled master origin a few hours ago and it fails with > > [ 98%] Linking CXX shared module _pcbnew.kiface > C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/10.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: > > CMakeFiles/pcbnew_kiface.

[Kicad-developers] Master won't build

2020-08-06 Thread Brian Piccioni
FYI I pulled master origin a few hours ago and it fails with [ 98%] Linking CXX shared module _pcbnew.kiface C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/10.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/pcbnew_kiface.dir/objects.a(drc_rule_parser.cpp.obj):drc_rule_parser.cpp:(

Re: [Kicad-developers] How to get bounding box of all items on a schematic page

2020-08-06 Thread Seth Hillbrand
Assuming that you are working on the master branch, you would iterate over all items in the schematic SCH_SCREEN's RTree and join their boxes. Something like this: EDA_RECT bbox; for( EDA_ITEM* item : GetScreen()->Items() ) bbox.Merge( item->GetBoundingBox() ); Warning: Code has not been te

[Kicad-developers] How to get bounding box of all items on a schematic page

2020-08-06 Thread pjmonty
Hi, As the subject line says, I'm trying to figure out how to get a bounding box of just the items on a schematic page.  I want all the items on the page in the bounding box, but not the page itself.     ___ Mailing list: https://launchpad.net/~kicad

Re: [Kicad-developers] ngspice vcpkg port

2020-08-06 Thread Wayne Stambaugh
On 8/6/20 12:57 PM, Mark Roszko wrote: > @Wayne Stambaugh  I'm working on it and > everything else. I already have wxPython compiling via cmake :P There's > actually a good chance python and wxpython won't be compiled inside > vcpkg but will still use it to build, just

Re: [Kicad-developers] ngspice vcpkg port

2020-08-06 Thread Mark Roszko
@Wayne Stambaugh I'm working on it and everything else. I already have wxPython compiling via cmake :P There's actually a good chance python and wxpython won't be compiled inside vcpkg but will still use it to build, just slightly out of tree. But I'm going to make the process as simple as a singl

Re: [Kicad-developers] ngspice vcpkg port

2020-08-06 Thread Wayne Stambaugh
On 8/6/20 7:24 AM, Roberto Fernández Bautista wrote: > Excellent news! > > Which KiCad dependencies are left to be ported to VCPKG?  > > It seems we are very close to a complete KiCad build system in Visual > Studio :) It's definitely a step in the right direction but wxPython (wxPhoenix) is sti

Re: [Kicad-developers] ngspice vcpkg port

2020-08-06 Thread Roberto Fernández Bautista
Excellent news! Which KiCad dependencies are left to be ported to VCPKG? It seems we are very close to a complete KiCad build system in Visual Studio :) On Thu, 6 Aug 2020, 02:05 Mark Roszko, wrote: > ngspice and wxwidgets 3.1.4 have been merged on vcpkg. > > On Sun, Aug 2, 2020 at 5:55 PM Way