I'm not good in Linux. I'm trying to build CodeLite from source. The directions on CodeLite's web site (here) are insufficient for me to perform the build. I think I am just lacking knowledge of the build system in Linux. The build step I am at is make -j4
. The error I am currently facing is:
fatal error: wx/wxsqlite3.h No such file or directory
I have found that file on my system at
/home/moving2/sdk/wxsqlite3/include/wx/wxsqlite3.h
The best guess I have is that the include path needs to be added in my environment? So I have tried adding this to the PATH
string in my environment
file located in /etc/
but I get the same error. How do I get the compiler to look there for my include file?