summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTroy D. Straszheim <troy@resophonic.com>2009-04-23 19:37:45 +0000
committerTroy D. Straszheim <troy@resophonic.com>2009-04-23 19:37:45 +0000
commita0d3dc84f7714e37026ea579ba066d89560f1921 (patch)
treebd2b48625c88249a264aa991679e75f66d7449d7
parentb38b0da46281f8506114b2aca22bfa18d3cc45a4 (diff)
downloadboost-a0d3dc84f7714e37026ea579ba066d89560f1921.tar.gz
Tidy up for release
[SVN r52573]
-rw-r--r--BuildSlave.cmake64
1 files changed, 0 insertions, 64 deletions
diff --git a/BuildSlave.cmake b/BuildSlave.cmake
deleted file mode 100644
index ec8a125390..0000000000
--- a/BuildSlave.cmake
+++ /dev/null
@@ -1,64 +0,0 @@
-##########################################################################
-# Boost Build Slave Support #
-##########################################################################
-# Copyright (C) 2008 Troy D. Straszheim #
-# #
-# Distributed under the Boost Software License, Version 1.0. #
-# See accompanying file LICENSE_1_0.txt or copy at #
-# http://www.boost.org/LICENSE_1_0.txt #
-##########################################################################
-#
-# Quick configuration of build slaves.
-#
-# 1. Copy this file to your (empty, newly created) build directory
-# 2. Customize below where you see CUSTOMIZE
-# 3. Use this file to populate your build directory. From the build
-# directory execute:
-#
-# cmake -C path/to/this/file ../path/to/source/directory
-#
-# e.g.
-#
-# cmake -C BuildSlave.cmake ../src
-#
-
-message (STATUS "Reading initial cache for build slaves.")
-
-#
-# CUSTOMIZE
-#
-set(BOOST_BUILD_SLAVE_CONTACT_INFO "buildmeister@example.com"
- CACHE STRING "who to contact with questions" FORCE)
-
-set(BOOST_BUILD_SLAVE_HOSTNAME "descriptive.name.of.host.example.com"
- CACHE STRING "descriptive hostname" FORCE)
-
-#
-# CUSTOMIZE: Either set this to the path of an existing file
-# (relative to build directory) or create the file slave-description.txt
-#
-set(BOOST_BUILD_SLAVE_DETAILS_FILE "slave-description.txt"
- CACHE STRING "file containing details about the build/platform" FORCE)
-
-#
-# Below this line oughtn't require customization.
-#
-if(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE})
- message(STATUS "Will take build details from ${BOOST_BUILD_SLAVE_DETAILS_FILE}")
-else(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE})
- message(FATAL_ERROR "Please configure BOOST_BUILD_SLAVE_DETAILS_FILE (${BOOST_BUILD_SLAVE_DETAILS_FILE}) and create this file")
-endif(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE})
-
-if(WIN32)
- set(CMAKE_GENERATOR "NMake Makefiles" CACHE INTERNAL "generator" FORCE)
- set(CMAKE_MAKE_PROGRAM "nmake" CACHE INTERNAL "nmake" FORCE)
-endif(WIN32)
-
-set(BUILD_TESTING ON
- CACHE BOOL "build testing" FORCE)
-
-set(BOOST_BUILD_SLAVE ON
- CACHE BOOL "build slave mode" FORCE)
-
-
-