I've verified that the libraries were built and installed in /usr/local/lib/wx and the headers are in /usr/local/include
I then ran CodeLite and created a new wxProject using the wizard. When attempting to build, I get the following errors. I do have this in my Tag Options:Search Path:
Code: Select all
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/5.0/include
/Library/Frameworks
/System/Library/Frameworks
/usr/include
/usr/local/include
/usr/local/include/wx-3.0
Code: Select all
/bin/sh -c 'make -j 4 -e -f Makefile'
----------Building project:[ Squibbler - Debug ]----------
make[1]: wx-config: Command not found
make[1]: wx-config: Command not found
make[1]: wx-config: Command not found
g++ -c "/Users/XYZ/Desktop/Development/Projects/Squibbler/squibbler_app.cpp" -g -Wall -O0 -D__WX__ -o ./Debug/squibbler_app.o -I.
g++ -c "/Users/XYZ/Desktop/Development/Projects/Squibbler/squibbler_frame.cpp" -g -Wall -O0 -D__WX__ -o ./Debug/squibbler_frame.o -I.
In file included from In file included from /Users/XYZ/Desktop/Development/Projects/Squibbler/squibbler_frame.cpp:1:
./squibbler_frame.h:4:10: fatal error: 'wx/frame.h' file not found
/Users/XYZ/Desktop/Development/Projects/Squibbler/squibbler_app.cpp:1:
./squibbler_app.h:4:10: fatal error: 'wx/app.h' file not found
#include "wx/frame.h"
^
#include "wx/app.h"
^
1 error generated.
1 error generated.
make[1]: *** [Debug/squibbler_frame.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [Debug/squibbler_app.o] Error 1
make: *** [All] Error 2
2 errors, 1 warnings
cheers,
Michael