-
Notifications
You must be signed in to change notification settings - Fork 1
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
2 changed files
with
94 additions
and
23 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,15 +1,57 @@ | ||
{ | ||
"name": "hermes-shm", | ||
"version": "1.1.0", | ||
"homepage": "https://grc.iit.edu/hermes-shm/", | ||
"description": "This library contains a variety of data structures and synchronization primitives which are compatible with shared memory.", | ||
"license": "BSD-3-Clause", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
"catch2", | ||
"cereal" | ||
] | ||
"name": "hermes-shm", | ||
"version": "1.1.0", | ||
"homepage": "https://grc.iit.edu/hermes-shm/", | ||
"description": "This library contains a variety of data structures and synchronization primitives which are compatible with shared memory.", | ||
"license": "BSD-3-Clause", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
"catch2" | ||
], | ||
"default-features": ["bench","boost","cereal","coverage","doxygen","elf","mpi","openmp","pthread","shared","test","thallium"], | ||
"features": { | ||
"bench": { | ||
"description": "Build benchmarks" | ||
}, | ||
"boost": { | ||
"description": "Build Boost tests", | ||
"dependencies": ["boost"] | ||
}, | ||
"cereal": { | ||
"description": "Enable serialization using cereal", | ||
"dependencies": ["cereal"] | ||
}, | ||
"coverage": { | ||
"description": "Check how well tests cover code" | ||
}, | ||
"doxygen": { | ||
"description": "Check how well the code is documented" | ||
}, | ||
"elf": { | ||
"description": "Enable ELF" | ||
}, | ||
"mpi": { | ||
"description": "Build MPI tests", | ||
"dependencies": ["mpi"] | ||
}, | ||
"openmp": { | ||
"description": "Build OpenMP tests" | ||
}, | ||
"pthread": { | ||
"description": "Support spawning pthreads" | ||
}, | ||
"shared": { | ||
"description": "Build shared libraries" | ||
}, | ||
"test": { | ||
"description": "Build tests" | ||
}, | ||
"thallium": { | ||
"description": "Test with Thallium", | ||
"dependencies": ["thallium"] | ||
} | ||
} | ||
} |