> *For more information: [conda environments](https://conda.io/docs/user-guide/tasks/manage-environments.html)*
### Activating the environment
After creating the `csmdev` environment and installing cmake and libcsm into it, we need to activate it. Right now, cmake, libcsm, and their dependencies are isolated to a conda environment and we need to tell conda that we want to use it. The activation command depends on your shell.
***bash**: `source activate csmdev`
***tcsh**: `conda activate csmdev`
> *You can add these to the end of your $HOME/.bashrc or $HOME/.cshrc if you want the `csmdev` environment to be active in every new terminal.*
## Building CSM-CameraModel
CSM-CameraModel contains two different sensor models. The first, is a generic
After you've set up conda, you can build CSM-CameraModel:
framing camera model written from scratch. The second is a generic line scan
camera model based on code from BAE Systems Information and Electronic Systems
1. Fork `USGS-Astrogeology/CSM-CameraModel` if you don't already have a fork.
Integration Inc.
2. Clone your fork of `CSM-CameraModel`*with `--recursive` option to get the gtest submodule*.
> You can install this with an `INSTDIR` of your choice, or let it default (see [libcsmapi README](https://github.com/sminster/csm/blob/master/README))
* a c++11 compliant compiler
```bash
mkdir$HOME/csmenv
This repository has all of its external c++ dependencies included in it. The
cd$HOME
excellent header-only JSON library
git clone git@github.com:sminster/csm.git
[JSON for Modern C++](https://github.com/nlohmann/json) is included directly in
cd csm
the source code. The other two dependencies, the CSM API library, and gtest
make -f Makefile.linux64 all install clean INSTDIR="$csmenv"
are included as git submodules. When you clone this library make sure you add
```
the `--recursive` flag to your `git clone` command. Alaterntively, you can run
2. Install cmake >= 3.10
`git submodule update --init --recursive` after cloning. The library can also be
```bash
compiled against an installed versions of the CSM API by setting the BUILD_CSM
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.