[go: up one dir, main page]

File: configure.sh

package info (click to toggle)
kdesvn 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,692 kB
  • ctags: 3,837
  • sloc: cpp: 34,561; sh: 155; xml: 84; python: 47; makefile: 10
file content (16 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if [ ! -d Build/Release ]; then
 mkdir -p Build/Release
fi

if [ ! -d Build/Release ]; then
  echo "Could not change to build folder"
  exit -1
fi

cd Build/Release||exit

cmake ../.. -DCMAKE_BUILD_TYPE=RelWithDebInfo 
cd -