An open API service indexing awesome lists of open source software.

https://github.com/enzymead/cmake-template

🔨 A template for using Enzyme with CMake
https://github.com/enzymead/cmake-template

cmake enzyme-ad template

Last synced: 3 months ago
JSON representation

🔨 A template for using Enzyme with CMake

Awesome Lists containing this project

README

        

# CMake-Template

## Usage

### Install dependencies

- cmake
- make
- llvm
- enzyme

Using spack:
```
spack env activate .
spack install
```

Using homebrew:
```
brew bundle install
```

### Configure and build

Configure the CMake project using the version of Enzyme installed on the system:
```
mkdir build && cd build
cmake ..
make
```

Configure the CMake project using a custom Enzyme version:
```
mkdir build && cd build
cmake -DEnzyme_DIR=/path/to/Enzyme/enzyme/build
make
```