From 6055e3492ab3a167fd58b61eb2c2e4397a01c0b7 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 10 Mar 2011 14:53:39 +0000 Subject: [PATCH] From Mourad Boufarguine, "I gave osg android port a try on Windows using cygwin, and it worked like a charm (only a tiny problem with osgViewer, when cross compiling for android using cygwin, the windows path in osgViewer/CMakeLists.txt is used rather than the android one, fix attached). " --- src/osgViewer/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgViewer/CMakeLists.txt b/src/osgViewer/CMakeLists.txt index f32e0ee1a..d30309300 100644 --- a/src/osgViewer/CMakeLists.txt +++ b/src/osgViewer/CMakeLists.txt @@ -38,7 +38,7 @@ SET(LIB_COMMON_FILES SET(LIB_EXTRA_LIBS) -IF(WIN32) +IF(WIN32 AND NOT ANDROID) # # Enable workaround for OpenGL driver issues when used in multithreaded/multiscreen with NVidia drivers on Windows XP # For example: osgviewer dumptruck.osg was showing total garbage (screen looked like shattered, splashed hedgehog)