Warning, /sdk/kdesrc-build/kdesrc-buildrc-kf5-sample is written in an unsupported language. File is not indexed.
0001 # This is a sample kdesrc-build configuration file appropriate for KDE 0002 # Frameworks 5-based build environments. 0003 # 0004 # See the kdesrc-buildrc-sample for explanations of what the options do, or 0005 # view the manpage or kdesrc-build documentation at 0006 # https://docs.kde.org/?application=kdesrc-build 0007 global 0008 branch-group kf5-qt5 0009 kdedir ~/kde-5 # Where to install KF5-based software 0010 # Uncomment this and edit value to choose a different Qt5 0011 # qtdir /usr # Where to find Qt5 0012 0013 # Where to download source code. By default the build directory and 0014 # logs will be kept under this directory as well. 0015 source-dir ~/kde/src 0016 0017 # These values should be set to the number of cores to use during build (if 0018 # in doubt, run "nproc" to see how many cores you have) 0019 num-cores 4 0020 0021 # This is the same as above but used for heavyweight modules like 0022 # qtwebengine, though you can use it for modules yourself. A conservative 0023 # thumbrule is one core for every 2 GiB of total memory. 0024 num-cores-low-mem 2 0025 end global 0026 0027 # Instead of specifying modules here, the current best practice is to refer to 0028 # KF5 module lists maintained with kdesrc-build by the KF5 developers. As new 0029 # modules are added or modified, the kdesrc-build KF5 module list is altered to 0030 # suit, and when you update kdesrc-build you will automatically pick up the 0031 # needed changes. 0032 0033 # NOTE: You MUST change the path below to include the actual path to your 0034 # kdesrc-build installation. 0035 include /path/to/kdesrc-build/kf5-qt5-build-include 0036 0037 # If you wish to maintain the module list yourself that is possible, simply 0038 # look at the files pointed to above and use the "module-set" declarations that 0039 # they use, with your own changes. 0040 0041 # It is possible to change the options for modules loaded from the file 0042 # included above (since it's not possible to add a module that's already been 0043 # included), e.g. 0044 options kcoreaddons 0045 make-options -j4 0046 end options