Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.txt | D | 04-Jul-2025 | 1.6 KiB | 70 | 40 | |
pgobuild32.bat | D | 04-Jul-2025 | 977 | 41 | 26 | |
pgobuild64.bat | D | 04-Jul-2025 | 970 | 38 | 26 | |
runshort.bat | D | 04-Jul-2025 | 3.1 KiB | 139 | 114 | |
runshort_alloc.bat | D | 04-Jul-2025 | 3.3 KiB | 141 | 114 | |
vcbuild32.bat | D | 04-Jul-2025 | 1.4 KiB | 49 | 38 | |
vcbuild64.bat | D | 04-Jul-2025 | 1.3 KiB | 51 | 36 | |
vcbuild_arm32.bat | D | 04-Jul-2025 | 1.1 KiB | 39 | 28 | |
vcbuild_arm64.bat | D | 04-Jul-2025 | 1.1 KiB | 38 | 28 | |
vcclean.bat | D | 04-Jul-2025 | 504 | 25 | 16 | |
vcdistclean.bat | D | 04-Jul-2025 | 706 | 30 | 20 |
README.txt
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