# (C) Copyright 2008-2009 SDML (www.sdml.info) # # Use, modification and distribution is subject to 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) cmake_minimum_required(VERSION 2.6) set(ORIGIN_ROOT $ENV{ORIGIN_ROOT}) if(NOT ORIGIN_ROOT) message(FATAL_ERROR "Set $ORIGIN_ROOT before building") endif() list(APPEND CMAKE_MODULE_PATH ${ORIGIN_ROOT}/cmake) include(Origin) origin_library_project( Iterators DESCRIPTION "Origin C++0x Libraries - New Iterators" DEPENDS ${ORIGIN_CORE_LIBRARIES} AUTHORS "Andrew Sutton < asutton -at- cs.kent.edu >" ) add_subdirectory(test)