diff --git a/core/main.mk b/core/main.mk index b4282ee66b..7f37f0ecb2 100644 --- a/core/main.mk +++ b/core/main.mk @@ -390,6 +390,7 @@ subdirs := \ development/host \ development/tools/etc1tool \ development/tools/line_endings \ + development/tools/emulator/opengl \ external/easymock \ external/expat \ external/libpng \ diff --git a/target/board/generic/BoardConfig.mk b/target/board/generic/BoardConfig.mk index 3ba648da45..c8a0569aa7 100644 --- a/target/board/generic/BoardConfig.mk +++ b/target/board/generic/BoardConfig.mk @@ -36,3 +36,6 @@ TARGET_SHELL := mksh ifeq ($(HOST_OS),linux) WITH_DEXPREOPT := true endif + +# Build OpenGLES emulation guest and host libraries +BUILD_EMULATOR_OPENGL := true diff --git a/target/board/generic_x86/BoardConfig.mk b/target/board/generic_x86/BoardConfig.mk index 02064342e2..5b6d50f0e3 100644 --- a/target/board/generic_x86/BoardConfig.mk +++ b/target/board/generic_x86/BoardConfig.mk @@ -26,3 +26,6 @@ TARGET_SHELL := mksh ifeq ($(HOST_OS),linux) WITH_DEXPREOPT := true endif + +# Build OpenGLES emulation host and guest libraries +BUILD_EMULATOR_OPENGL := true