Start by creating a build folder
mkdir -p build
rm -rf build/*
cd build/
To build PVR addon execute the following:
cmake -DCMAKE_BUILD_TYPE=Release -DPACKAGE_ZIP=ON ../
make
Finally generate the individual ZIP archive (which can then be installed manually):
make package
Run cmake GUI and create the VC project in a dedicated folder.
Open the generated solution pvr.mythtv.sln
in Visual C++, then generate the target BUILDALL
.
Finally generate the target PACKAGE
to create the individual ZIP archive.