In this folder you can find some ready to use bootstrap scripts. You must download dependencies first by running the following command:
git submodule update --init
Then pick the appropriate script for your platform:
- linux x86_64:
bootstrap-linux.sh - macos x86_64:
bootstrap-macos.sh - Windows x64:
bootstrap-win.cmd
Run it from the command line and then either:
- Run the compilation with
cmake --build build-<arch>-<config>, for examplecmake --build build-linux-release; - (Unix) Run the compilation by entering the build directory and launch the compilation with
make, for examplecd build-linux-debug && make; - (Windows) Open the visual studio solution, for example
build-win-Debug\podofo.sln.
You can run the tests in the library by entering the
build directory and using ctest,
for example cd build-linux-debug && ctest.
Warning: Read the following carefully
Playground dependencies are supplied only for PoDoFo development purposes and come
with no warranty. They are not frequently updated, may contain security
flaws and be unsafe to use. The dependencies directory layout is also
optimized to be used by the CMakeLists.txt in this folder and it's
not recommended to use them in a different way.