File: buildcmd.sh

package info (click to toggle)
dwarves 1.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,908 kB
  • sloc: ansic: 154,000; python: 926; sh: 725; makefile: 194
file content (7 lines) | stat: -rwxr-xr-x 120 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#!/bin/sh

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cd ..
make -j $(getconf _NPROCESSORS_ONLN) -C build