This is my Env Vars:
Code: Select all
CodeLiteDir=C:\CodeLite
WXWIN=$(CodeLiteDir)/wxWidgets-2.9.4
PATH=$(WXWIN)/lib/gcc_dll;$(CodeLiteDir);$(CodeLiteDir)/MinGW-4.4.1/bin;$(CodeLiteDir)/wxWidgets-2.9.4/lib/gcc_dll;$(PATH)
WXCFG=gcc_dll/mswu
UNIT_TEST_PP_SRC_DIR=$(CodeLiteDir)\UnitTest++-1.3
g++ -c "C:/Users/Andrew/Desktop/clut/main.cpp" -g -o Debug/main.o -I. -IC:\CodeLite\UnitTest++-1.3/src -I.
And g++ complains about a missing header.
If I force add:
-Ic:/CodeLite/UnitTest++-1.3/src
Everything builds OK (well linker dies because of the same issue...)
How do I get the built in vars to handle slashes appropriately?