# Copyright (c) 2008-2010 Kent State University # # This file is distributed under the MIT License. See the accompanying file # LICENSE.txt or http:#www.opensource.org/licenses/mit-license.php for terms # and conditions. cmake_minimum_required(VERSION 2.8) 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( Vectors DESCRIPTION "Vector-based data structures" DEPENDS core ) origin_executable(test test.cpp)