diff options
| author | Dawid Wróbel <me@dawidwrobel.com> | 2021-09-17 17:20:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-17 08:20:35 -0700 |
| commit | 8a943f71ffb6d99ac8800b71172d4eff2d0c6df4 (patch) | |
| tree | 93d6541c3b6b789c981c29bfbf763f0fe995370f /ports/kf5service | |
| parent | 6edc46f862f9931d174ffbd45fb07f8df3edf040 (diff) | |
| download | vcpkg-8a943f71ffb6d99ac8800b71172d4eff2d0c6df4.tar.gz vcpkg-8a943f71ffb6d99ac8800b71172d4eff2d0c6df4.zip | |
[kf5*] re-enable parallel configure, speed up compilation (#20202)
* [kf5*] re-enable parallel configure
* [kf5*] update versions
Diffstat (limited to 'ports/kf5service')
| -rw-r--r-- | ports/kf5service/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/kf5service/vcpkg.json | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/kf5service/portfile.cmake b/ports/kf5service/portfile.cmake index 71077a8f5..acb0876ed 100644 --- a/ports/kf5service/portfile.cmake +++ b/ports/kf5service/portfile.cmake @@ -31,8 +31,10 @@ get_filename_component(BISON_DIR "${BISON}" DIRECTORY) vcpkg_add_to_path(PREPEND "${FLEX_DIR}")
vcpkg_add_to_path(PREPEND "${BISON_DIR}")
+# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
+file(WRITE ${SOURCE_PATH}/.clang-format "DisableFormat: true\nSortIncludes: false\n")
+
vcpkg_cmake_configure(
- DISABLE_PARALLEL_CONFIGURE
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_TESTING=OFF
diff --git a/ports/kf5service/vcpkg.json b/ports/kf5service/vcpkg.json index 69f73cd9c..72136bf20 100644 --- a/ports/kf5service/vcpkg.json +++ b/ports/kf5service/vcpkg.json @@ -1,6 +1,7 @@ { "name": "kf5service", "version": "5.84.0", + "port-version": 1, "description": "Plugin framework for desktop services", "homepage": "https://api.kde.org/frameworks/kservice/html/index.html", "dependencies": [ |
