me again...I am using some POST-BUILD commands, and on rebuild, Codelite says: SFML-Test.mk:84: recipe for target 'PostBuild' failed. Same with a clean and build.
Code: Select all
C:\WINDOWS\system32\cmd.exe /C E:/DevTools/WinBuilds/bin/mingw32-make.exe -j8 SHELL=cmd.exe -e -f Makefile
"----------Building project:[ SFML-Test - Debug ]----------"
mingw32-make.exe[1]: Entering directory 'E:/Workspaces/CodeLite/SFML/SFML-Test'
E:/DevTools/WinBuilds/bin/g++.exe -o ./Debug/SFML-Test @"SFML-Test.txt" -L. -LE:/Lib/cpp/SFML/build/lib -lsfml-graphics-d -lsfml-window-d -lsfml-audio-d -lsfml-network-d -lsfml-system-d -static -static-libgcc -static-libstdc++
mingw32-make.exe[1]: Leaving directory 'E:/Workspaces/CodeLite/SFML/SFML-Test'
mingw32-make.exe[1]: Entering directory 'E:/Workspaces/CodeLite/SFML/SFML-Test'
Executing Post Build commands ...
ROBOCOPY E:\Workspaces\CodeLite\SFML\SFML-Test\Resources E:\Workspaces\CodeLite\SFML\SFML-Test\./Debug\Resources /MIR /NFL /NDL /NJH /NJS /nc /ns /np
mingw32-make.exe[1]: *** [PostBuild] Error 1
mingw32-make.exe: *** [All] Error 2
SFML-Test.mk:84: recipe for target 'PostBuild' failed
mingw32-make.exe[1]: Leaving directory 'E:/Workspaces/CodeLite/SFML/SFML-Test'
Makefile:4: recipe for target 'All' failed
====2 errors, 0 warnings====
Code: Select all
ROBOCOPY $(ProjectPath)Resources $(ProjectPath)$(OutDir)\Resources /MIR /NFL /NDL /NJH /NJS /nc /ns /np
Using CodeLite 9.1.1 (Not self build) on Windows 10 with gcc 4.8.3
P.S. Maybe it's a bug of mingw32-make ?