/ Published in: Bash
This is a best practice snippet for people who want to start working with cmake.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
alias cbuild='mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debugfull -DCMAKE_INSTALL_PREFIX=/usr .. && make && cd ..' #building something replaced by cbuild shellscript