From b7771de0a338f4b330b9126b19ede2d3416559d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 19 Mar 2013 16:32:47 +0100 Subject: [PATCH] Set both TARGET_NACL and MAGNUM_TARGET_NACL in CMakeLists. Being consistent with all other options, all of them are both unprexfixed and prefixed in CMake (and then only prefixed versions are saved into `magnumConfigure.h` file). --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 799488f4a..81866daf4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/modules/") if(${CMAKE_SYSTEM_NAME} STREQUAL NaCl) set(TARGET_GLES 1) set(TARGET_GLES2 1) + set(TARGET_NACL 1) set(MAGNUM_TARGET_NACL 1) endif()