aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-skia
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/scripts/test_ports/vcpkg-ci-skia
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-skia')
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-skia/portfile.cmake6
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-skia/vcpkg.json48
2 files changed, 54 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-skia/portfile.cmake b/vcpkg/scripts/test_ports/vcpkg-ci-skia/portfile.cmake
new file mode 100644
index 0000000..b9d37dd
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-skia/portfile.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${CURRENT_INSTALLED_DIR}/share/skia/example"
+)
+vcpkg_cmake_build()
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-skia/vcpkg.json b/vcpkg/scripts/test_ports/vcpkg-ci-skia/vcpkg.json
new file mode 100644
index 0000000..e59883b
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-skia/vcpkg.json
@@ -0,0 +1,48 @@
+{
+ "name": "vcpkg-ci-skia",
+ "version-date": "2023-04-03",
+ "description": "Builds an app in order to validate the skia port.",
+ "license": "BSD-3-Clause",
+ "dependencies": [
+ {
+ "name": "skia",
+ "default-features": false
+ },
+ {
+ "name": "skia",
+ "default-features": false,
+ "features": [
+ "metal"
+ ],
+ "platform": "osx"
+ },
+ {
+ "name": "skia",
+ "default-features": false,
+ "features": [
+ "graphite"
+ ],
+ "platform": "windows & !uwp"
+ },
+ {
+ "name": "skia",
+ "default-features": false,
+ "features": [
+ "dawn"
+ ],
+ "platform": "!android & !uwp"
+ },
+ {
+ "name": "skia",
+ "default-features": false,
+ "features": [
+ "vulkan"
+ ],
+ "platform": "linux | osx | (windows & !uwp)"
+ },
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ }
+ ]
+}