File: configure

package info (click to toggle)
subtitlecomposer 0.5.3-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,276 kB
  • ctags: 3,622
  • sloc: cpp: 29,274; xml: 83; sh: 52; ruby: 42; python: 35; makefile: 5
file content (10 lines) | stat: -rwxr-xr-x 297 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

CURRENT_DIR=$(echo $0 | sed -e 's/^\(.*\/\)[^\/][^\/]*$/\1/')
BUILD_TESTS=ON

cd ${CURRENT_DIR} && \
(rm -R build; \
mkdir build && \
cd build && \
cmake -GKDevelop3 ../ -DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) -DCMAKE_BUILD_TYPE=debugfull -DKDE4_BUILD_TESTS:BOOL=${BUILD_TESTS})