Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,21 +149,21 @@ If you find a cleaner way to specific the library paths, please let me know.
For Apple Silicon (M-Series Chips), the brew installation location is moved to /opt/homebrew. So some installation instruction is different.

Make sure you have homebrew installed, then install the dependencies as normal.
'''bash
```bash
brew install qt gsl qwt cmake
'''
```

Then clone the git repo, cd into the repo, make the build folder, and then cd into the build folder.

'''bash
```bash
git clone https://github.com/arkottke/strata.git
cd strata
mkdir build
cd build
'''
```

Then run the following to compile.
'''bash
```bash
cmake .. \
-DQWT_ROOT_DIR=$(brew --prefix qwt) \
-DQWT_INCLUDE_DIR=$(brew --prefix qwt)/lib/qwt.framework/Headers \
Expand All @@ -172,9 +172,11 @@ cmake .. \
-DCMAKE_INSTALL_PREFIX=dist

cmake --build . --target install
'''
```

Now you installed the strata into your /Application folder. You can run it from searching 'strata' in spotline search.
Now you installed the strata into your /Application folder. You can run it from searching 'strata' in spotline search.

The manual and examples are packaged inside the strata.app. Right click on the `strata.app` in finder and choose **"Show Package Contents"**.

## Testing

Expand Down
Loading