Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wangyoucao577/hello-app-sample
Hello app to invoke wangyoucao577/hello-sdk-sample for trying out Conan and GitVersion.
https://github.com/wangyoucao577/hello-app-sample
conan gitversion
Last synced: 10 days ago
JSON representation
Hello app to invoke wangyoucao577/hello-sdk-sample for trying out Conan and GitVersion.
- Host: GitHub
- URL: https://github.com/wangyoucao577/hello-app-sample
- Owner: wangyoucao577
- License: mit
- Created: 2021-07-01T01:55:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T13:44:42.000Z (over 3 years ago)
- Last Synced: 2024-10-26T17:53:58.129Z (about 2 months ago)
- Topics: conan, gitversion
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hello-app-sample
Hello app to invoke [wangyoucao577/hello-sdk-sample](https://github.com/wangyoucao577/hello-sdk-sample) for trying out [Conan, the C/C++ Package Manager](https://conan.io/) and [GitVersion](https://gitversion.net/).## Local Development
### Prerequisites
- latest [conan](https://docs.conan.io/en/latest/installation.html)
- latest [cmake](https://cmake.org/)
- latest `C/C++` compiler on your platform:
- `g++` on `linux`
- `clang` on `macosx`
- `visual studio` on `windows`
- install my conan repo
`conan remote add my-conan-repo https://wangyoucao577.jfrog.io/artifactory/api/conan/test-conan-local`### Build
```bash
$ mkdir -p build
$ cd build
$
$ # install dependencies, build it on the fly if the binary package doesn't exist
$ conan install .. --build=missing
$
$ cmake ../src/
$ cmake --build .
$ ./bin/helloapp
```