DEVSIM INSTALL Instructions:
These instructions are for building the software from source.
Please visit http://www.devsim.org or RELEASE for information about binary availability.

Supported Platforms:
Centos, Red Hat 6
macOS
Microsoft Windows

Centos, Redhat 6:
scripts/build_centos_6.sh

macOS:
scripts/build_macos.sh

The script used for building and packaging macOS and Centos distributions:
.travis.yml

The script used for building and packaging Microsoft Windows:
appveyor.yml

Please note that the following options are enabled by default.
OPTION(VTKWRITER    "Build with VTK Writer" ON)

By setting these options to OFF in the build directory, (CMakeCache.txt), the number of required dependencies is significantly reduced.

If you have any issues with installation, please contact us through the github website:
https://github.com/devsim/devsim/issues

Note that the -j2 option for make and ctest is for building and testing in 2 parallel threads.  This number can be changed to run as many simultaneous processes as desired.

If there are issues during the build, try using:
make VERBOSE=1

in order to see what the build process is doing at the point of failure.

You can see how tests are run in:
testing/CMakeLists.txt

You can see the actual commands run during the test using:
ctest -V

or more specifically:
ctest -V -R sqlite1

The following scripts can be used to package a DEVSIM distribution:
dist/package_win32.sh
dist/package_linux.sh
dist/package_apple.sh

