-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:asutton/origin
- Loading branch information
Showing
67 changed files
with
881 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Copyright (c) 2008-2013 Andrew Sutton | ||
# | ||
# 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. | ||
|
||
add_subdirectory(core) | ||
add_subdirectory(memory) | ||
add_subdirectory(numeric) | ||
add_subdirectory(sequence) | ||
add_subdirectory(data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# Copyright (c) 2008-2014 Andrew Sutton | ||
# | ||
# 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. | ||
|
||
add_library(origin-core | ||
traits.cpp | ||
concepts.cpp | ||
function.cpp | ||
type.cpp | ||
) | ||
|
||
# FIXME: The tests in this library need to link against | ||
# the origin-core library. | ||
|
||
add_subdirectory(concepts.test) | ||
add_subdirectory(function.test) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// 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. | ||
|
||
#include "concepts.hpp" |
Oops, something went wrong.