intel / libvpl

Intel® Video Processing Library (Intel® VPL) API, dispatcher, and examples
https://intel.github.io/libvpl/
MIT License
262 stars 80 forks source link

Compile 32-bit libraries #113

Closed xidiancpy closed 7 months ago

xidiancpy commented 7 months ago

My application requires a 32-bit library, but I don't know how to compile it?

mav-intel commented 7 months ago

@xidiancpy You will need to build directly with CMake. If your generator supports multiple architectures you can use :

-A Specify platform name if supported by generator.

Some CMake generators support a platform name to be given to the native build system to choose a compiler or SDK. See the CMAKE_GENERATOR_PLATFORM variable for details.

xidiancpy commented 7 months ago

got it