Codelite project Clean & Build issues - also Language Server issues
Installed Codelite 15.0.6 and also wxWidgets-3.1.5 from source using procedure on this site. https://docs.codelite.org/build/build_wx_widgets/ When creating project using wxCrafter - wxDialog or any wx[Method] the project can not clean or build. Same issue with projects created as C++ wxCrafter enabled.
Code: Select all
/usr/bin/make -j16 -e -f Makefile clean
----------Cleaning project:[ C-Simple-Projects - Debug ]----------
make[1]: wx-config: Command not found
make[1]: wx-config: Command not found
rm -f -r ../build-Debug/C-Simple-Projects
=== build completed successfully (0 errors, 0 warnings) ===
I can understand the Compiler & Linker Options setting which calls
Code: Select all
wx-config --cxxflags
indicating Command not found above, but calling
Code: Select all
wx-config --cxxflags
from the command line works.
However I am stuck changing project setting each time. There must be another root cause. Also little red arrows pointing to code indicate the IDE can not find the libs.
Code: Select all
sudo make install
which completed successfully and can find wx-config in my shell using terminal.
Code: Select all
> % wx-config --cxxflags
-I/usr/local/lib/wx/include/osx_cocoa-unicode-3.1 -I/usr/local/include/wx-3.1 -D_FILE_OFFSET_BITS=64 -DwxDEBUG_LEVEL=0 -DWXUSINGDLL -D__WXMAC__ -D__WXOSX__ -D__WXOSX_COCOA__
Thomas