File: initScript_linux.bash

package info (click to toggle)
openwalnut 1.2.5-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 11,624 kB
  • sloc: cpp: 84,081; ansic: 8,169; python: 1,690; sh: 811; perl: 185; xml: 173; makefile: 27
file content (12 lines) | stat: -rwxr-xr-x 223 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
mkdir build/release
cd build/release
cmake  -D CMAKE_BUILD_TYPE:STRING=Release ../../src
make many
cd ../..

mkdir build/debug
cd build/debug
cmake  -D CMAKE_BUILD_TYPE:STRING=Debug ../../src
make many
cd ../..