compile problem of the new cocos2d-x-3.0alpha0-pre release

I’ve encounter a problem when compiling the new cocos2d-x-3.0alpha0-pre release using VS2012 on Win7:

compile log says “……(project library data path)” “……(output data path)” is not a command … when compiling project “libcocos2d”

to fix it, just open up the project pre-link-event, modify it from :

if not exist “$(OutDir)” mkdir “$(OutDir)”xcopy /Y /Q “$(ProjectDir)…_party\win32\libraries." “$”
to :
if not exist “$” mkdir “$”
xcopy /Y /Q "$…_party\win32\libraries.
” “$(OutDir)”

that’s it :slight_smile: