Skip to content

Instantly share code, notes, and snippets.

@aladinoster
Last active October 29, 2021 04:29
Show Gist options
  • Select an option

  • Save aladinoster/cfe7111952aeeb8d19835a45e6d4eb54 to your computer and use it in GitHub Desktop.

Select an option

Save aladinoster/cfe7111952aeeb8d19835a45e6d4eb54 to your computer and use it in GitHub Desktop.
Conda: Environment to compile FMM github.com/cyang-kth/fmm
name: fmm
channels:
- conda-forge
- anaconda
dependencies:
- python=3.9
- boost-cpp
- libgdal=3.2.1
- bzip2
- expat
- llvm-openmp
- cmake
- make
- clangxx_osx-64
- swig
@aladinoster
Copy link
Author

@aladinoster
Copy link
Author

To compile:

conda activate fmm
git clone https://github.com/cyang-kth/fmm.git
mkdir build 
cd build
cmake .. -DCMAKE_PREFIX_PATH=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
make -j4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment