summaryrefslogtreecommitdiffstats
path: root/source/kde/kde/cmake/kdevelop
blob: 0ef680aa14c57908ff328245c70edd6f7e1345ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# The -DCLANG_BUILTIN_DIR below is there because with our llvm-16.0.0 the
# cmake script to find the clang builtin includes directory doesn't seem
# to be working. In previous versions of LLVM the number in the path was
# the full version number (i.e. 16.0.0), but now it's just 16. Perhaps
# future versions of kdevelop will locate this properly, so test periodically
# to see if that's the case.
mkdir cmake-build
cd cmake-build
  cmake \
    $KDE_OPT_ARGS \
    -DKDE_PLATFORM_FEATURE_DISABLE_DEPRECATED=TRUE \
    -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
    -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
    -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
    -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DMAN_INSTALL_DIR=/usr/man \
    -DSYSCONF_INSTALL_DIR=/etc/kde \
    -DLIB_SUFFIX=${LIBDIRSUFFIX} \
    -DLIB_INSTALL_DIR=lib$LIBDIRSUFFIX \
    -DQT_PLUGIN_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/plugins \
    -DQML_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/qml \
    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
    -DBUILD_TESTING=OFF \
    -DQca-qt5_DIR=/usr/lib${LIBDIRSUFFIX}/cmake/Qca \
    -DCLANG_BUILTIN_DIR=$(/bin/ls -d /usr/lib$LIBDIRSUFFIX/clang/*/include) \
    ..