the ./Debug directory is recreated, but it is empy = no object files and here is the build log:
Code: Select all
----------Build Started--------
C:\WINDOWS\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "testCon_wsp.mk""
----------Building project:[ testCon - Debug ]----------
mingw32-make.exe[1]: Entering directory `M:/data/cppprojects/testCon'
g++ -o ./Debug/testCon "-Le:/data/MinGW-4.4.0/lib/" "-Le:/data/libraries/wxWidgets-2008-05-06/lib/gcc_lib/" "-Le:/data/libraries/glew/bin/" "-Le:/data/libraries/boost_1_35_0/lib/" "-Le:/data/libraries/devil/lib/unicode/" "-L."
g++: no input files
mingw32-make.exe[1]: *** [Debug/testCon] Error 1
mingw32-make.exe: *** [All] Error 2
mingw32-make.exe[1]: Leaving directory `M:/data/cppprojects/testCon'
----------Build Ended----------
0 errors, 0 warnings
if i right click the main.cpp and choose compile, the main.cpp is compiled and object files are created in Debug directory:
Code: Select all
----------Build Started--------
C:\WINDOWS\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "testCon.mk" ./Debug/main.o"
----------Building project:[ testCon - Debug ] (Single File Build)----------
g++ -c "M:/data/cppprojects/testCon/main.cpp" -g -o ./Debug/main.o "-Ie:/data/MinGW-4.4.0/include/" "-Ie:/data/libraries/wxWidgets-2008-05-06/include/" "-Ie:/data/libraries/glew/include/" "-Ie:/data/libraries/boost_1_35_0/include/" "-Ie:/data/libraries/devil/include/" "-I." "-I."
----------Build Ended----------
0 errors, 0 warnings
but then building the project does not create executable and the build log is the same as the first one in this post (g++: no input files)
release build behaves the same
EDIT:
compiling from command line (
mingw32-make.exe -j 2 -f testCon_wsp.mk) gives the same error, so it is probably a problem outsie the codelite