Using Visual C++ 2010 Express
- Install CMake using the Win32 Installer: http://cmake.org/cmake/resources/software.html
- Download zlib: http://zlib.net/zlib125.zip
- Download taglib: http://developer.kde.org/~wheeler/files/src/taglib-1.7.tar.gz
- Download Boost: http://sourceforge.net/projects/boost/files/boost/1.46.1/
- Uncompress zlib, taglib and boost into the echoprint-codegen directory
- Load CMake
- For Browse Source... and Browse Build... select the zlib directory you uncompressed
- Click configure
- Choose Visual Studio 10 as the generator, and use default native compilers
- Click generate
- Load the generated zlib.sln
- Make sure release is selected in the top bar (next to the play button)
- In the solution explorer, right click on zlib project and select Build
- Load CMake
- For Browse Source... and Browse Build... select the taglib directory you uncompressed
- Press configure
- Choose Visual Studio 10 as the generator, and use default native compilers
- There will be an error saying "Could NOT find ZLIB". Click the Advanced checkbox.
- Change the ZLIB_INCLUDE_DIR variable to the zlib directory, and ZLIB_LIBRARY variable to zlib-1.2.5\Release\zlib.lib
- Click Generate
- Load the generated taglib.sln
- Make sure release is selected in the top bar (next to the play button)
- In the solution explorer, right click on tag project and select Build
- Download ffmpeg: http://ffmpeg.zeranoe.com/builds/
- Uncompress and move somewhere
- Update your path to include the ffmpeg\bin directory
- Load codegen.sln
- If you downloaded different versions of the dependencies you will need to change the path to the include and library directories.
Copy tag.dll and zlib.dll into the same directory as codegen.exe. Make sure that the ffmpeg bin directory is on your PATH.
Zlib and Taglib compilation instructions from Lukáš Lalinský: http://oxygene.sk/lukas/2011/04/windows-binaries-for-taglib/