2

I have some problem. I want to use libvpx for encoding frame on VS 2012 Express.

First step, I installs Cygwin and gcc, make, and yasm packages.

Second, I downloads libvpx and creates "build" folder for building libvpx.

Third, I run this command in "build" folder.

../libvpx/configure --target=x86-win32-vs11 --enable-static-msvcrt

Finally, I run make command. However, it return the message:

"msbuild.exe not found in path"

My OS is windows 7 64 bit. How do I fix it? Thank you for your answer.

Akajit Saelim
  • 91
  • 1
  • 1
  • 9

1 Answers1

0

Running make from the mingw shell will have created a solution file which you can open with visual studio and then build the project.

totaam
  • 1,306
  • 14
  • 25