From a0608eb3cf14bf96c94efc848e12c713a015cac6 Mon Sep 17 00:00:00 2001 From: Bala Avulapati Date: Wed, 21 Feb 2024 19:29:57 +0530 Subject: [PATCH] use a different directory for webkitlibraries --- .github/workflows/ci.yml | 6 +++--- Makefile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e01da5bb..a1f7d9be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - run: cmake --version - uses: ilammy/msvc-dev-cmd@v1 - run: curl -L --output WebKitRequirementsWin64.zip https://github.com/WebKitForWindows/WebKitRequirements/releases/download/v2024.02.05/WebKitRequirementsWin64.zip - - run: mkdir build - - run: Expand-Archive -Force WebKitRequirementsWin64.zip build/WebKitLibraries - - run: ls build/WebKitLibraries + - run: mkdir build2 + - run: Expand-Archive -Force WebKitRequirementsWin64.zip build2/WebKitLibraries + - run: ls build2/WebKitLibraries - run: nmake webkit diff --git a/Makefile b/Makefile index 87ea359e..0f29ae40 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ webkit: .always -DENABLE_STATIC_JSC:BOOL=ON \ -DUSE_SYSTEM_MALLOC:BOOL=ON \ -DICU_DEBUG:BOOL=ON \ - -DWEBKIT_LIBRARIES_DIR:STRING=D:/a/includejs/includejs/build/WebKitLibraries \ + -DWEBKIT_LIBRARIES_DIR:STRING=D:/repos/includejs/build2/WebKitLibraries \ -DCMAKE_BUILD_TYPE:STRING=$(PRESET) $(CMAKE) --build ./build --config $(PRESET) --parallel 4