open-discussion > How to get the application from source file?
Showing 1-2 of 2 posts
Display:
Results per page:
Jan 25, 2017  02:01 AM | Feng Wei
How to get the application from source file?
Could anyone tell me how to build the source file to get the binary executable? The best is to provide a video file.

Thanks a lot
Jan 30, 2017  01:01 PM | Beatriz Paniagua
RE: How to get the application from source file?
Hi Fei,


SPHARM-PDM github code repository is hosted here https://github.com/NIRALUser/SPHARM-PDM

In order to build SPHARM-PDM you have to have cmake installed in your system, as well as having development tools available (gcc, g++...)

1. Create github account
2. open a terminal window type git clone https://github.com/NIRALUser/SPHARM-PDM
3. create build directory  cd .. && mkdir build-spharm && cd build-spharm
4. ccmake .
5. If you have all tools necessary for the build, the cmake cache should be self populated by typing c (configure), once you see the option g (generate), you can type it and cmake will generate the makefiles necessary to build the code
6. once you are back to your teminal prompt you can type make

Thanks,
Beatriz