-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
2,010 additions
and
1,273 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,8 @@ build/* | |
*.user | ||
|
||
# VSCode files | ||
.vscode | ||
.vscode | ||
|
||
# IDEA files | ||
.idea | ||
cmake-build-* |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,7 +1,7 @@ | ||
[![Build (main)](https://github.com/JHUAPL/kami/actions/workflows/build-main.yml/badge.svg)](https://github.com/JHUAPL/kami/actions/workflows/build-main.yml) | ||
[![Build (develop)](https://github.com/JHUAPL/kami/actions/workflows/build-develop.yml/badge.svg)](https://github.com/JHUAPL/kami/actions/workflows/build-develop.yml) | ||
[![Documentation status](https://readthedocs.org/projects/kami/badge/?version=latest)](https://kami.readthedocs.io/en/latest/?badge=latest) | ||
[![Release status](https://img.shields.io/github/release/JHUAPL/kami.svg)](https://kami.readthedocs.io/en/latest/?badge=latest) | ||
[![Release status](https://img.shields.io/github/release/JHUAPL/kami.svg)](https://github.com/JHUAPL/kami/releases) | ||
![License](https://img.shields.io/github/license/JHUAPL/kami) | ||
|
||
# Kami is Agent-Based Modeling in Modern C++ | ||
|
@@ -40,15 +40,18 @@ conan create . kami/develop | |
## Direct Dependencies | ||
|
||
* [CLI11](https://github.com/CLIUtils/CLI11) | ||
* [Google Test](https://github.com/google/googletest) | ||
* [neargye-semver](https://github.com/Neargye/semver) | ||
* [spdlog](https://github.com/gabime/spdlog) | ||
|
||
CLI11 and spdlog are both used extensively in the examples and unit | ||
tests. Neither is used directly by the Kami library. | ||
CLI11 and spdlog are both used extensively in the examples. | ||
Neither is used directly by the Kami library. | ||
|
||
## Contribution guidelines | ||
|
||
* Use [GitFlow](http://nvie.com/posts/a-successful-git-branching-model/) | ||
|
||
* Use [Google Test](https://github.com/google/googletest) | ||
|
||
## For more information | ||
|
||
* James P. Howard, II <<[email protected]>> |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,18 +3,18 @@ | |
|
||
class KamiConan(ConanFile): | ||
name = "kami" | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
license = "MIT" | ||
author = "James P. Howard, II <[email protected]>" | ||
url = "http://github.com/jhuapl/kami" | ||
url = "https://github.com/jhuapl/kami" | ||
description = "Agent-Based Modeling in Modern C++" | ||
topics = ("agent-based modeling", "simulation", "orms") | ||
settings = "os", "compiler", "build_type", "arch" | ||
generators = "cmake", "cmake_find_package" | ||
exports_sources = "*" | ||
|
||
options = {"shared": [True, False], "fPIC": [True, False]} | ||
default_options = {"shared": True, "fPIC": True} | ||
default_options = {"shared": False, "fPIC": False} | ||
|
||
|
||
def _configure_cmake(self): | ||
|
@@ -47,3 +47,5 @@ def requirements(self): | |
self.requires("fmt/7.1.3") | ||
self.requires("spdlog/1.8.5") | ||
self.requires("cli11/1.9.1") | ||
self.requires("neargye-semver/0.3.0") | ||
self.requires("gtest/cci.20210126") |
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
Oops, something went wrong.