nowrep / obs-vkcapture

OBS Linux Vulkan/OpenGL game capture
GNU General Public License v2.0
532 stars 25 forks source link

Improve 32bit build detection #48

Closed Johnnynator closed 2 years ago

Johnnynator commented 2 years ago

One can easily make an 32bit build without having -m32 in CFLAGS, e.g. in native builds. Checking CMAKE_SIZEOF_VOID_P is probably the most reliable way to differentiate between an 32bit and a 64bit system.

nowrep commented 2 years ago

Thanks!