Hi,
I downloaded trial of VGDB with intention to setup my android build on Visual Studio.
I installed the extension and imported my android project. I selected not to modify my android.mk (it’s big and complex and conditionally includes many other makefiles).
The problem is that I cannot do anything else after that since the buildstep is kind of retarded:
“$(VISUALGDB_DIR)VisualGDB.exe” /build AndroidApp1-Debug.vgdbsettings
and somehow from this line it calls:
C:android-ndk-r8bndk-build.cmd NDK_DEBUG=1 APP_PLATFORM=android-14
But this isn’t going to work with my build since I need to pass many parameters on the make line and search path (for the make.exe itself). Is there a way to specify all these params manually?
thanks