1 2 3libmpdec and libmpdec++ build instructions for Visual Studio 4============================================================ 5 6 For all builds: After a successful build, the static libraries, the dynamic 7 libraries and the header files should be in the dist64 or dist32 directory. 8 9 The unit tests attempt to download the official IBM test cases (text files). 10 No executables are downloaded. 11 12 13 64-bit release build 14 -------------------- 15 16 # Clean the build directory if files from a previous build are present. 17 vcdistclean.bat 18 19 # Build the libraries. Optionally use pgobuild64.bat instead of vcbuild64.bat 20 # for a profile-guided optimization build. 21 vcbuild64.bat 22 23 # Run the unit tests. 24 runshort.bat 25 26 27 64-bit debug build 28 ------------------ 29 30 # Clean the build directory if files from a previous build are present. 31 vcdistclean.bat 32 33 # Build the libraries. 34 vcbuild64.bat /d 35 36 # Run the unit tests. 37 runshort.bat /d 38 39 40 32-bit release build 41 -------------------- 42 43 # Clean the build directory if files from a previous build are present. 44 vcdistclean.bat 45 46 # Build the libraries. Optionally use pgobuild32.bat instead of vcbuild32.bat 47 # for a profile-guided optimization build. 48 vcbuild32.bat 49 50 # Run the unit tests. 51 runshort.bat 52 53 54 32-bit debug build 55 -------------------- 56 57 # Clean the build directory if files from a previous build are present. 58 vcdistclean.bat 59 60 # Build the libraries. 61 vcbuild32.bat /d 62 63 # Run the unit tests. 64 runshort.bat /d 65 66 67 68 69 70