diff --git a/.travis.yml b/.travis.yml index 50a902bc9e91780f427ba0b1ace1323517e98fb8..b9ec906e73f428ac9ab8bb514f0d300356e07960 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,7 @@ python: - 3.6 install: - - pip install --user sphinx # sphinx_rtd_theme - # pypi's sphinx_rtd_theme is outdated. Internet recommends using current - # master. Note: at some point, it will be OK to add `sphinx_rtd_theme` to - # the `pip install` above => remove line below: - - python -m pip install --user https://github.com/rtfd/sphinx_rtd_theme/archive/master.zip -U + - python -m pip install --user sphinx sphinx-rtd-theme script: bash ./build_and_deploy.sh diff --git a/docs/source/BuildingCMake.rst b/docs/source/BuildingCMake.rst index b1674f24392d5a4334a3dde330207c906c628ae3..bdcae0b8a84df23196cf134b39bf92853fdf9fce 100644 --- a/docs/source/BuildingCMake.rst +++ b/docs/source/BuildingCMake.rst @@ -148,14 +148,19 @@ Next, configure, build and install AMReX as follows: .. code:: shell - > cmake AMREX_CONFIG_OPTIONS -DENABLE_PARTICLES=1 -DENABLE_AMRDATA=1 -DENABLE_EB=1 -DCMAKE_INSTALL_PREFIX:PATH=/absolute/path/to/installdir . + > cmake . AMREX_CONFIG_OPTIONS \ + -DENABLE_PARTICLES=1 \ + -DENABLE_AMRDATA=1 \ + -DENABLE_EB=1 \ + -DENABLE_3D_NODAL_MLMG=1 \ + -DCMAKE_INSTALL_PREFIX:PATH=/absolute/path/to/installdir + > make install -Here,\ ``AMREX_CONFIG_OPTIONS`` are optional configure options for -AMReX. Please refer to the AMReX user guide for a list of all the -possible configuration options. The only options required are -**-DENABLE\_PARTICLES=1**, **-DENABLE\_AMRDATA=1**, and -**-DENABLE\_EB=1**. +Here,\ ``AMREX_CONFIG_OPTIONS`` are optional configure options for AMReX. Please +refer to the AMReX user guide for a list of all the possible configuration +options. The only options required are **-DENABLE\_PARTICLES=1**, +**-DENABLE\_AMRDATA=1**, **-DENABLE\_EB=1**, and **-DENABLE_3D_NODAL_MLMG=1**. Building MFiX-Exa ~~~~~~~~~~~~~~~~~