lammps/cmake
Richard Berger 93190a548a Merge branch 'cmake' of github.com:junghans/lammps into cmake 2017-07-31 11:48:27 -06:00
..
Modules added FFTW2 support 2017-07-19 15:33:02 -06:00
gpu GPU: clean up part 2 2017-07-18 18:43:51 -06:00
CMakeLists.txt Merge branch 'cmake' of github.com:junghans/lammps into cmake 2017-07-31 11:48:27 -06:00
README added minimal README 2017-07-18 16:06:29 -06:00

README

cmake-buildsystem
-----------------

To use the cmake build system instead of the make-driven one, do:
```
cmake /path/to/lammps/source/cmake
```
(please note the cmake directory as the very end)

To enable package, e.g. GPU do
```
cmake /path/to/lammps/source/cmake -DENABLE_GPU=ON
```

cmake has many many options, do get an overview use the curses-based cmake interface, ccmake:
```
ccmake /path/to/lammps/source/cmake
```
(Don't forget to press "g" for generate once you are done with configuring)