Im trying to compile static library project with CodeLite and getting error:
ar rcus ./Debug/libtestlib.a @"testlib.txt"
ar: @testlib.txt: No such file or directory
But i have file testlib.txt. When i inspect exported makefile i see:
$(AR) $(ArchiveOutputSwitch)$(OutputFile) @$(ObjectsFileList) $(ArLibs)
For me it is strange to see there @ symbol near ObjectsFileList. How should i compile static library project in CodeLite ?