Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdumas/onetbb-sanitizer
https://github.com/jdumas/onetbb-sanitizer
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jdumas/onetbb-sanitizer
- Owner: jdumas
- License: mit
- Created: 2022-10-28T22:40:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T19:25:16.000Z (about 2 years ago)
- Last Synced: 2023-03-02T18:56:08.503Z (almost 2 years ago)
- Language: CMake
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# OneTBB Example Test
## Usage
0. Requirements
- [CMake 3.20 or later](https://cmake.org/download). On Unix, CMake installed from `apt` can be
outdated. Check with `cmake --version`.
- Command line (Unix) or Powershell/Git Bash (Windows).1. Clone the repository:
```bash
git clone https://github.com/jdumas/onetbb-sanitizer.git
```2. Setup build:
```bash
cd
mkdir build
cd build
cmake ..
```By default, this will generate a Visual Studio project on Windows, and Unix Makefiles on OSX and
Linux. If you wish to use XCode on Mac, use `cmake -G "Xcode" ..` instead.3. Build
```bash
cmake --build .
```Or open the Visual Studio/XCode project with `cmake --open .`
## Contributing
Read the [Contributing Guide](./.github/CONTRIBUTING.md) for more
information.## Licensing
This example project is licensed under the MIT license. See [LICENSE](LICENSE) for more information.