[go: up one dir, main page]

File: configure-debug.sh

package info (click to toggle)
kdesvn 2.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,716 kB
  • sloc: cpp: 32,753; xml: 84; sh: 54; makefile: 8
file content (16 lines) | stat: -rwxr-xr-x 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

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

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

cd Build/Debug||exit

cmake ../.. -DCMAKE_BUILD_TYPE=Debug -DTESTINGBUILD=On -DKDE4_BUILD_TESTS=On -DCMAKE_INSTALL_PREFIX=/usr
cd -