cmake_minimum_required(VERSION 2.8) #set(CMAKE_BUILD_TYPE "Release") 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( Heap DESCRIPTION "Heap data structures and algorithms" DEPENDS core std AUTHORS "Andrew Sutton < asutton -at- cs.kent.edu >" "Michael Lopez < mlopez7 -at- cs.kent.edu >" ) add_subdirectory(test)