I have the same problem.
Can anyone be kind to answer it?
I doing used custom Makefile. I have no problems.
For example, create Makefile_my.
Set this name in project properties.
On compile, will called target Release. In my example target Release equ target all.
On CleanRelease, will called target clean.
default:
@echo ****************** Make DLL ******************
@make.CMD
Debug: all
Release: all
all :
@echo ****************** Make DLL ******************
@make.CMD
cleanDebug: clean
cleanRelease: clean
clean:
@echo ****************** Remove DLL ******************
@removeall.cmd
If you have questions, I ready to answer.
Good luck!