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( Core DESCRIPTION "Origin C++0x Libraries - Matrices" AUTHORS "Michael Lopez < mlopez7 -at- kent.edu >" "Andrew Sutton < asutton -at- cs.kent.edu >" DEPENDS core ) add_subdirectory(test)