# 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. # Configure the build environment cmake_minimum_required(VERSION 2.6) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) # Define Origin-specific configuration information such as version, etc. # This is done here to allow external. Don't forget to update this from time # to time... set(ORIGIN_VERSION_MAJOR 0) set(ORIGIN_VERSION_MINOR 1) set(ORIGIN_VERSION_PATCH 0) set(ORIGIN_VERSION "${ORIGIN_VERSION_MAJOR}.${ORIGIN_VERSION_MINOR}.${ORIGIN_VERSION_PATCH}") # Include all of the Origin-specific build facilities. include(Origin) # List all of the projects that will be built as part of Origin. add_subdirectory(core) add_subdirectory(std) # Specific data structures, etc. add_subdirectory(dynarray) add_subdirectory(heap) add_subdirectory(graph) # This must always be last since it builds on previously defined variables # and installation information. origin_package()