Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit c59da34

Browse files
committed
fix test
1 parent 38b23ca commit c59da34

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if(-Not (Test-Path -Path build-geodiff)) { mkdir build-geodiff }
5050
cd build-geodiff
5151
52-
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=FALSE ..\geodiff\geodiff
52+
cmake -DBUILD_STATIC=TRUE -DENABLE_TESTS=FALSE ..\geodiff\geodiff
5353
cmake --build . --config Release
5454
5555
- name: build mergin-cpp-client
@@ -59,5 +59,6 @@ jobs:
5959
if(-Not (Test-Path -Path build-mergin-cpp-client)) { mkdir build-mergin-cpp-client }
6060
cd build-mergin-cpp-client
6161
62-
qmake ..\mergin-cpp-client\src\client.pro CONFIG+=release
63-
nmake
62+
qmake ..\mergin-cpp-client\src\client.pro CONFIG+=release CONFIG+=static
63+
nmake release
64+
dir

scripts/ci/config.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
win32 {
22
INPUT_DIR = $$PWD/../../input
3-
GEODIFF_INCLUDE_DIR = $$PWD/../geodiff/geodiff
3+
GEODIFF_INCLUDE_DIR = $$PWD/../geodiff/geodiff/src
44
GEODIFF_LIB_DIR = $$PWD/../build-geodiff
55
}
66

0 commit comments

Comments
 (0)