https://github.com/dup4/autowired-cpp
AutoWired for morden cpp
https://github.com/dup4/autowired-cpp
autowired cpp dependency-injection
Last synced: about 2 months ago
JSON representation
AutoWired for morden cpp
- Host: GitHub
- URL: https://github.com/dup4/autowired-cpp
- Owner: Dup4
- License: mit
- Created: 2022-06-09T14:52:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T03:24:43.000Z (over 1 year ago)
- Last Synced: 2025-02-04T12:47:31.495Z (4 months ago)
- Topics: autowired, cpp, dependency-injection
- Language: C++
- Homepage:
- Size: 163 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# autowired-cpp
[](https://github.com/Dup4/autowired-cpp/actions/workflows/clang_format.yml)
[](https://github.com/Dup4/autowired-cpp/actions/workflows/test.yml)
[](https://codecov.io/gh/Dup4/autowired-cpp)
[](https://GitHub.com/Dup4/autowired-cpp/releases/)## Integration
### CMake
```cmake
FetchContent_Declare(
autowired
QUIET
GIT_REPOSITORY https://github.com/Dup4/autowired-cpp.git
GIT_TAG v{x.y.z} # Where `x.y.z` is the release version you want to use.
)
```### Bazel
```bazel
git_repository(
name = "autowired",
remote = "https://github.com/Dup4/autowired-cpp.git",
tag = "v{x.y.z}", # Where `x.y.z` is the release version you want to use.
)
```## Usage
See the usage in the [unit test](./test/autowired_v1_test.cc)
## License
[MIT](./LICENSE) License © 2022 - PRESENT [Dup4][dup4]
[dup4]: https://github.com/Dup4