From 7e797067df8d120fcbfcb4986f58ab5bb662fadf Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Sat, 31 May 2014 10:24:02 -0400 Subject: Make it easier to turn the bundled dependencies off. --- third-party/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'third-party') diff --git a/third-party/CMakeLists.txt b/third-party/CMakeLists.txt index fd16334830..ffd2e68b16 100644 --- a/third-party/CMakeLists.txt +++ b/third-party/CMakeLists.txt @@ -13,10 +13,12 @@ set(DEPS_LIB_DIR "${DEPS_DIR}/usr/lib") set(DEPS_BUILD_DIR "${DEPS_DIR}/build") set(DEPS_DOWNLOAD_DIR "${DEPS_BUILD_DIR}/downloads") -option(USE_BUNDLED_LIBUV "Use the bundled libuv." ON) -option(USE_BUNDLED_MSGPACK "Use the bundled msgpack." ON) -option(USE_BUNDLED_LUAJIT "Use the bundled version of luajit." ON) -option(USE_BUNDLED_LUAROCKS "Use the bundled version of luarocks." ON) +option(USE_BUNDLED "Use bundled dependencies." ON) + +option(USE_BUNDLED_LIBUV "Use the bundled libuv." ${USE_BUNDLED}) +option(USE_BUNDLED_MSGPACK "Use the bundled msgpack." ${USE_BUNDLED}) +option(USE_BUNDLED_LUAJIT "Use the bundled version of luajit." ${USE_BUNDLED}) +option(USE_BUNDLED_LUAROCKS "Use the bundled version of luarocks." ${USE_BUNDLED}) # TODO: add windows support -- cgit