From 283a50aba9fd0354a12da134fbd1f339f8bf5cf2 Mon Sep 17 00:00:00 2001 From: rude Date: Sat, 28 Sep 2013 00:57:13 +0200 Subject: [PATCH] Use lowercase "option" and ON/OFF rather than TRUE/FALSE. --- libs/DevIL-1.7.8/CMakeLists.txt | 4 ++-- libs/freetype-2.5.0.1/CMakeLists.txt | 4 ++-- libs/jasper-1.900.1/CMakeLists.txt | 4 ++-- libs/jpeg-9/CMakeLists.txt | 4 ++-- libs/libmodplug-0.8.8.4/CMakeLists.txt | 4 ++-- libs/libogg-1.3.1/CMakeLists.txt | 4 ++-- libs/libvorbis-1.3.3/CMakeLists.txt | 8 ++++---- libs/lua-5.1.5/CMakeLists.txt | 4 ++-- libs/mpg123-1.15.3/CMakeLists.txt | 4 ++-- libs/tiff-4.0.3/CMakeLists.txt | 4 ++-- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/libs/DevIL-1.7.8/CMakeLists.txt b/libs/DevIL-1.7.8/CMakeLists.txt index b8813536..26f0e398 100644 --- a/libs/DevIL-1.7.8/CMakeLists.txt +++ b/libs/DevIL-1.7.8/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(DevIL) -OPTION(DEVIL_BUILD_SHARED "Build shared library" TRUE) -OPTION(DEVIL_BUILD_STATIC "Build static library" TRUE) +option(DEVIL_BUILD_SHARED "Build shared library" ON) +option(DEVIL_BUILD_STATIC "Build static library" ON) set(DEVIL_SRC src-IL/src/altivec_common.c diff --git a/libs/freetype-2.5.0.1/CMakeLists.txt b/libs/freetype-2.5.0.1/CMakeLists.txt index 9b2f4868..70f86289 100644 --- a/libs/freetype-2.5.0.1/CMakeLists.txt +++ b/libs/freetype-2.5.0.1/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(freetype) -OPTION(FREETYPE_BUILD_SHARED "Build shared library" TRUE) -OPTION(FREETYPE_BUILD_STATIC "Build static library" TRUE) +option(FREETYPE_BUILD_SHARED "Build shared library" ON) +option(FREETYPE_BUILD_STATIC "Build static library" ON) set(FREETYPE_SRC src/autofit/autofit.c diff --git a/libs/jasper-1.900.1/CMakeLists.txt b/libs/jasper-1.900.1/CMakeLists.txt index 23217c15..78acca8f 100644 --- a/libs/jasper-1.900.1/CMakeLists.txt +++ b/libs/jasper-1.900.1/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(jasper) -OPTION(JASPER_BUILD_SHARED "Build shared library" TRUE) -OPTION(JASPER_BUILD_STATIC "Build static library" TRUE) +option(JASPER_BUILD_SHARED "Build shared library" ON) +option(JASPER_BUILD_STATIC "Build static library" ON) set(JASPER_SRC src/libjasper/base/jas_cm.c diff --git a/libs/jpeg-9/CMakeLists.txt b/libs/jpeg-9/CMakeLists.txt index 143d2da6..ba8552c9 100644 --- a/libs/jpeg-9/CMakeLists.txt +++ b/libs/jpeg-9/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(jpeg) -OPTION(JPEG_BUILD_SHARED "Build shared library" TRUE) -OPTION(JPEG_BUILD_STATIC "Build static library" TRUE) +option(JPEG_BUILD_SHARED "Build shared library" ON) +option(JPEG_BUILD_STATIC "Build static library" ON) set(JPEG_SRC jaricom.c diff --git a/libs/libmodplug-0.8.8.4/CMakeLists.txt b/libs/libmodplug-0.8.8.4/CMakeLists.txt index 29257554..f30d938c 100644 --- a/libs/libmodplug-0.8.8.4/CMakeLists.txt +++ b/libs/libmodplug-0.8.8.4/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(modplug) -OPTION(MODPLUG_BUILD_SHARED "Build shared library" TRUE) -OPTION(MODPLUG_BUILD_STATIC "Build static library" TRUE) +option(MODPLUG_BUILD_SHARED "Build shared library" ON) +option(MODPLUG_BUILD_STATIC "Build static library" ON) set(MODPLUG_SRC src/fastmix.cpp diff --git a/libs/libogg-1.3.1/CMakeLists.txt b/libs/libogg-1.3.1/CMakeLists.txt index c865bfa1..fdad400d 100644 --- a/libs/libogg-1.3.1/CMakeLists.txt +++ b/libs/libogg-1.3.1/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(ogg) -OPTION(OGG_BUILD_SHARED "Build shared library" TRUE) -OPTION(OGG_BUILD_STATIC "Build static library" TRUE) +option(OGG_BUILD_SHARED "Build shared library" ON) +option(OGG_BUILD_STATIC "Build static library" ON) set(OGG_SRC src/bitwise.c diff --git a/libs/libvorbis-1.3.3/CMakeLists.txt b/libs/libvorbis-1.3.3/CMakeLists.txt index df513f47..f7827390 100644 --- a/libs/libvorbis-1.3.3/CMakeLists.txt +++ b/libs/libvorbis-1.3.3/CMakeLists.txt @@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.8) project(vorbis) -OPTION(VORBIS_BUILD_SHARED "Build shared libvorbis" TRUE) -OPTION(VORBIS_BUILD_STATIC "Build static libvorbis" TRUE) -OPTION(VORBISFILE_BUILD_SHARED "Build shared libvorbisfile" TRUE) -OPTION(VORBISFILE_BUILD_STATIC "Build static libvorbisfile" TRUE) +option(VORBIS_BUILD_SHARED "Build shared libvorbis" ON) +option(VORBIS_BUILD_STATIC "Build static libvorbis" ON) +option(VORBISFILE_BUILD_SHARED "Build shared libvorbisfile" ON) +option(VORBISFILE_BUILD_STATIC "Build static libvorbisfile" ON) set(VORBIS_SRC lib/analysis.c diff --git a/libs/lua-5.1.5/CMakeLists.txt b/libs/lua-5.1.5/CMakeLists.txt index 6c79f13e..318431aa 100644 --- a/libs/lua-5.1.5/CMakeLists.txt +++ b/libs/lua-5.1.5/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(lua51) -OPTION(LUA_BUILD_SHARED "Build shared library" TRUE) -OPTION(LUA_BUILD_STATIC "Build static library" TRUE) +option(LUA_BUILD_SHARED "Build shared library" ON) +option(LUA_BUILD_STATIC "Build static library" ON) set(LUA_SRC src/lapi.c diff --git a/libs/mpg123-1.15.3/CMakeLists.txt b/libs/mpg123-1.15.3/CMakeLists.txt index ad4c5924..b988cfd6 100644 --- a/libs/mpg123-1.15.3/CMakeLists.txt +++ b/libs/mpg123-1.15.3/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(mpg123) -OPTION(MPG123_BUILD_SHARED "Build shared library" TRUE) -OPTION(MPG123_BUILD_STATIC "Build static library" TRUE) +option(MPG123_BUILD_SHARED "Build shared library" ON) +option(MPG123_BUILD_STATIC "Build static library" ON) set(MPG123_SRC src/libmpg123/compat.c diff --git a/libs/tiff-4.0.3/CMakeLists.txt b/libs/tiff-4.0.3/CMakeLists.txt index 82049265..ac66ff62 100644 --- a/libs/tiff-4.0.3/CMakeLists.txt +++ b/libs/tiff-4.0.3/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) project(tiff) -OPTION(TIFF_BUILD_SHARED "Build shared library" TRUE) -OPTION(TIFF_BUILD_STATIC "Build static library" TRUE) +option(TIFF_BUILD_SHARED "Build shared library" ON) +option(TIFF_BUILD_STATIC "Build static library" ON) set(TIFF_SRC libtiff/tif_aux.c