second try at msbuild

This commit is contained in:
Harvey Fong 2025-04-10 19:45:05 -06:00
parent e985c74aac
commit cb522a0959
2 changed files with 18 additions and 3 deletions

View File

@ -85,9 +85,10 @@ cd ../..
git clone https://github.com/libimobiledevice/libplist
git clone https://github.com/jpaver/opengametools.git
git clone https://github.com/oomer/vmax2bella.git
cp vmax2bella/patch_libplist/libplist.vcxproj ../libplist
cp vmax2bella/patch_libplist/cnary.c ../libplist/libcnary/cnary.c
cp vmax2bella/patch_libplist/plist.c ../libplist/libcnary/plist.c
copy .\vmax2bella\patch_libplist\libplist.vcxproj .\libplist
copy /Y .\vmax2bella\patch_libplist\config.h .\libplist\src\config.h
copy /Y .\vmax2bella\patch_libplist\cnary.c .\libplist\libcnary\cnary.c
copy /Y .\vmax2bella\patch_libplist\plist.c .\libplist\src\plist.c
cd libplist
msbuild libplist.vcxproj /p:Configuration=release /p:Platform=x64 /p:PlatformToolset=v143
cd ..

14
patch_libplist/config.h Normal file
View File

@ -0,0 +1,14 @@
$ cat config.h
#ifndef CONFIG_H
#define CONFIG_H
#define PACKAGE_VERSION "2.4.0"
#define PACKAGE "libplist"
#define PACKAGE_BUGREPORT "https://github.com/libimobiledevice/libplist/issues"
#define PACKAGE_NAME "libplist"
#define PACKAGE_STRING "libplist 2.4.0"
#define PACKAGE_TARNAME "libplist"
#define PACKAGE_URL "https://libimobiledevice.org"
#endif /* CONFIG_H */