File: configure.debug

package info (click to toggle)
kmetronome 1.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,336 kB
  • sloc: cpp: 3,541; xml: 54; sh: 14; makefile: 6
file content (9 lines) | stat: -rwxr-xr-x 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/bash
# a typical configuration for development usage...
mkdir -p build
cmake -S . -B build \
    -DCMAKE_PREFIX_PATH=$HOME/Qt/6.6.1/gcc_64 \
    -DDrumstick_DIR=$HOME/Projects/drumstick/build \
    -DCMAKE_BUILD_TYPE=Debug \
    -DCMAKE_INSTALL_PREFIX=/usr
echo "You can run 'cmake --build build' now"