openscenegraph / OpenSceneGraph

OpenSceneGraph git repository
http://www.openscenegraph.org
Other
3.25k stars 1.42k forks source link

Error System 64 bit #1131

Open Krosyus opened 2 years ago

Krosyus commented 2 years ago

Hello i have problem, i used VS2015 and i want to know how to compile in 64 bit. I changed the makefile configuration : OSG_WINDOWING_SYSTEM -> from "Win32" to "x64" with CMake 3.22.1 but i have an error "Windowing is not supported"

Help. Thx in advance.

LaurensVoerman commented 2 years ago

Hi Souffou, you will need to generate your project files for x64, and build the 64 bit binaries. use cmake -G "Visual Studio 14" -A x64 to generate your project files, or select the right generator in the cmake GUI. The OSG_WINDOWING_SYSTEM still needs to be Win32 - x64 is not a valid option (you will end up with none, and the error message you already know. Laurens.

On Tue, Apr 12, 2022 at 3:01 PM Souffou Daoudou @.***> wrote:

Hello i have problem, i used VS2015 and i want to know how to compile in 64 bit. I changed the makefile configuration : OSG_WINDOWING_SYSTEM -> from "Win32" to "x64" with CMake 3.22.1 but i have an error "Windowing is not supported"

Help. Thx in advance.

— Reply to this email directly, view it on GitHub https://github.com/openscenegraph/OpenSceneGraph/issues/1131, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEXFTWX4S2YW4DTCPGGZU7TVEVXZ7ANCNFSM5THHTQMA . You are receiving this because you are subscribed to this thread.Message ID: @.***>

Krosyus commented 2 years ago

Okay thanks.