新安装的CodeLite,Build的时候会出现问题,不知道怎么才能解决,还请各位大神告诉我症结在哪

(事实上不管Build Compile Preprocess都不能生成.exe)
报错如下:
C:\Windows\system32\cmd.exe /C E:/MinGW/bin/mingw32-make.exe -j4 SHELL=cmd.exe -e -f Makefile
"----------Building project:[ test - Debug ]----------"
mingw32-make.exe[1]: Entering directory `J:/IDEs/CodeLite/workspace/test'
E:/MinGW/bin/g++.exe -c "J:/IDEs/CodeLite/workspace/test/main.cpp" -g -O0 -Wall -o ./Debug/main.cpp.o -I. -I.
E:/MinGW/bin/g++.exe -o ./Debug/test @"test.txt" -L.
g++.exe: @test.txt: No such file or directory
g++.exe: no input files
mingw32-make.exe[1]: *** [Debug/test] Error 1
mingw32-make.exe[1]: Leaving directory `J:/IDEs/CodeLite/workspace/test'
mingw32-make.exe: *** [All] Error 2
====1 errors, 0 warnings====
test.txt只有一句:
./Debug/main.cpp.o
在同一个目录下发现了test.mk文件,看起来貌似存在一定的关系,也发出来:
##
## Auto Generated makefile by CodeLite IDE
## any manual changes will be erased
##
## Debug
ProjectName :=test
ConfigurationName :=Debug
WorkspacePath :=J:/IDEs/CodeLite/workspace
ProjectPath :=J:/IDEs/CodeLite/workspace/test
IntermediateDirectory :=./Debug
OutDir := $(IntermediateDirectory)
CurrentFileName :=
CurrentFilePath :=
CurrentFileFullPath :=
User :=Administrator
Date :=04/03/2017
CodeLitePath :=J:/IDEs/CodeLite
LinkerName :=E:/MinGW/bin/g++.exe
SharedObjectLinkerName :=E:/MinGW/bin/g++.exe -shared -fPIC
ObjectSuffix :=.o
DependSuffix :=.o.d
PreprocessSuffix :=.i
DebugSwitch :=-g
IncludeSwitch :=-I
LibrarySwitch :=-l
OutputSwitch :=-o
LibraryPathSwitch :=-L
PreprocessorSwitch :=-D
SourceSwitch :=-c
OutputFile :=$(IntermediateDirectory)/$(ProjectName)
Preprocessors :=
ObjectSwitch :=-o
ArchiveOutputSwitch :=
PreprocessOnlySwitch :=-E
ObjectsFileList :="test.txt"
PCHCompileFlags :=
MakeDirCommand :=makedir
RcCmpOptions :=
RcCompilerName :=E:/MinGW/bin/windres.exe
LinkOptions :=
IncludePath := $(IncludeSwitch). $(IncludeSwitch).
IncludePCH :=
RcIncludePath :=
Libs :=
ArLibs :=
LibPath := $(LibraryPathSwitch).
##
## Common variables
## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overriden using an environment variables
##
AR := E:/MinGW/bin/ar.exe rcu
CXX := E:/MinGW/bin/g++.exe
CC := E:/MinGW/bin/gcc.exe
CXXFLAGS := -g -O0 -Wall $(Preprocessors)
CFLAGS := -g -O0 -Wall $(Preprocessors)
ASFLAGS :=
AS := E:/MinGW/bin/as.exe
##
## User defined environment variables
##
CodeLiteDir:=J:\IDEs\CodeLite
Objects0=$(IntermediateDirectory)/main.cpp$(ObjectSuffix)
Objects=$(Objects0)
##
## Main Build Targets
##
.PHONY: all clean PreBuild PrePreBuild PostBuild MakeIntermediateDirs
all: $(OutputFile)
$(OutputFile): $(IntermediateDirectory)/.d $(Objects)
@$(MakeDirCommand) $(@D)
@echo "" > $(IntermediateDirectory)/.d
@echo $(Objects0) > $(ObjectsFileList)
$(LinkerName) $(OutputSwitch)$(OutputFile) @$(ObjectsFileList) $(LibPath) $(Libs) $(LinkOptions)
MakeIntermediateDirs:
@$(MakeDirCommand) "./Debug"
$(IntermediateDirectory)/.d:
@$(MakeDirCommand) "./Debug"
PreBuild:
##
## Objects
##
$(IntermediateDirectory)/main.cpp$(ObjectSuffix): main.cpp $(IntermediateDirectory)/main.cpp$(DependSuffix)
$(CXX) $(IncludePCH) $(SourceSwitch) "J:/IDEs/CodeLite/workspace/test/main.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/main.cpp$(ObjectSuffix) $(IncludePath)
$(IntermediateDirectory)/main.cpp$(DependSuffix): main.cpp
@$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/main.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/main.cpp$(DependSuffix) -MM main.cpp
$(IntermediateDirectory)/main.cpp$(PreprocessSuffix): main.cpp
$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/main.cpp$(PreprocessSuffix) main.cpp
-include $(IntermediateDirectory)/*$(DependSuffix)
##
## Clean
##
clean:
$(RM) -r ./Debug/
g++的no input files应该跟test.txt有关系,但以小生的功力实在难以解决,还请各位大神支支招!