Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
Those are awesome; MUCH better than the old build documentation. I must have missed them when they came out. Cheers, Jeff. > On 2 Nov 2018, at 22:54, Adam Wolf wrote: > > Take a look at https://github.com/KiCad/kicad-mac-builder > which is super a

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Adam Wolf
Take a look at https://github.com/KiCad/kicad-mac-builder which is super awesome and should be better than those shell scripts in every way. :) If the old stuff is better than the new stuff, please let me know how I can improve the new :) Thanks! On Fri, Nov 2, 2018, 4:50 PM Maciej Suminski I a

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Maciej Suminski
I am not a Mac guru, so I have followed a lazy path of KiCadMacOSPackaging [1] script by Adam Wolf, which got me cairo library as well. Cheers, Orson 1. https://github.com/wayneandlayne/KiCadMacOSPackaging/blob/master/setup.sh#L27 On 11/2/18 8:47 PM, Jeff Young wrote: > CLion must have been hold

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
CLion must have been holding on to something somewhere. Invalidating CLion’s caches and restarting did the deed. So my best guess is that you need to “brew install cairo”, and at least rerun CMake (possibly also needing to flush your devenv's caches). Have we added cairo to the list of pre-req

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
Hi Orson, Yes, brew seems to have installed a cairo-quartz.h in /usr/local/cellar/cairo/1.16.0/include/cairo/. Might cmake reference a specific version, or do I need to do something to make CMake find it? Cheers, Jeff. > On 2 Nov 2018, at 13:27, Maciej Suminski wrote: > > Hi Jeff, > > I c

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Maciej Suminski
Hi Jeff, I copied and adjusted your cmake spell, and it works fine for me on macOS 10.13 with cairo installed via brew. One difference I spotted is that I have cairo_quartz.h in /usr/local/Cellar/cairo/1.14.12/include/cairo/. Cheers, Orson On 11/2/18 1:58 PM, Jeff Young wrote: > CLion. CMake ar

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
CLion. CMake args: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.13 -DwxWidgets_CONFIG_EXECUTABLE=../../wxWidgets/wx-bin/bin/wx-config -DKICAD_SCRIPTING=ON -DKICAD_SCRIPTING_MODULES=OFF -DKICAD_SCRIPTING_WXPYTHON=OFF -DKICAD_USE_OCE=OFF -DCMAKE_INSTALL_PRE

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Adam Wolf
How are you building? What are your cmake arguments? Adam On Fri, Nov 2, 2018, 7:33 AM Jeff Young I also tried “brew install cairo” to no avail. I assume I need a > Cairo.framework in my /system/library/frameworks, but I’m not sure how to > get it there. > > > > On 2 Nov 2018, at 10:28, Jeff Y

Re: [Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
I also tried “brew install cairo” to no avail. I assume I need a Cairo.framework in my /system/library/frameworks, but I’m not sure how to get it there. > On 2 Nov 2018, at 10:28, Jeff Young wrote: > > "cairo-quartz.h can’t be found” > > I have such a file at /opt/local/include/cairo/, but

[Kicad-developers] Build failure OSX

2018-11-02 Thread Jeff Young
"cairo-quartz.h can’t be found” I have such a file at /opt/local/include/cairo/, but that’s evidently not where the dev system is looking. Do I need to copy that somewhere, or does something in my setup need to be updated to look for it there? Thanks, Jeff.