mirror of https://github.com/QMCPACK/qmcpack.git
7 lines
285 B
Bash
Executable File
7 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
echo Configuring and building froom inside the build directory.
|
|
echo Check the results of the CMake configuration to ensure that the preferred
|
|
echo compilers and libraries have been selected. See README and documentation
|
|
echo for guidance.
|
|
cd build; cmake ..; make; cd ..
|