Skip to content

Commit ae44162

Browse files
committed
remove msys/mingw build
1 parent 7816a0a commit ae44162

3 files changed

Lines changed: 4 additions & 85 deletions

File tree

.github/workflows/emf2svg-msys-x86_64.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,5 @@ emf2svg-test
5858
vcpkg
5959
vcpkg_installed
6060
vcpkg-manifest-install.log
61-
deps/tmp
62-
deps/src
63-
deps/include
64-
deps/lib
65-
61+
vcpkg-bootstrap.log
6662
coverage.*

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ libemf2svg
66
[![emf2svg - MacOS-x86_64](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-macos-x86_64.yml/badge.svg?branch=master)](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-macos-x86_64.yml)
77
[![emf2svg - MacOS-arm64](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-macos-arm64.yml/badge.svg?branch=master)](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-macos-arm64.yml)
88
[![emf2svg - Windows-x86_64](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-windows-x86_64.yml/badge.svg?branch=master)](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-windows-x86_64.yml)
9-
[![emf2svg - MSys-x86_64](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-msys-x86_64.yml/badge.svg?branch=master)](https://github.com/kakwa/libemf2svg/actions/workflows/emf2svg-msys-x86_64.yml)
109
[![codecov](https://codecov.io/gh/kakwa/libemf2svg/branch/master/graph/badge.svg?token=TZVBb0a0xK)](https://codecov.io/gh/kakwa/libemf2svg)
1110

1211
MS EMF (Enhanced Metafile) to SVG conversion library.
@@ -75,7 +74,6 @@ Building
7574
Commands to build this project:
7675

7776
```bash
78-
7977
# options:
8078
# * [-DUSE_CLANG=on]: use clang instead of gcc
8179
# * [-DSTATIC=on]: build static library
@@ -91,17 +89,18 @@ $ cmake . -DCMAKE_INSTALL_PREFIX=/usr/
9189
$ cmake . -DCMAKE_INSTALL_PREFIX=/usr/ -DUSE_SYSTEM_LIBUEMF=ON
9290

9391
# Windows native (MSVC) build
92+
$ git submodule update --init
9493
$ cmake . -DCMAKE_TOOLCHAIN_FILE=$(pwd)/vcpkg/scripts/buildsystems/vcpkg.cmake
9594

9695
# Cross-compilation
97-
# This project employs vcpkg (https://github.com/microsoft/vcpkg) to setup cross-compilation environment
96+
# This project can employs vcpkg (https://github.com/microsoft/vcpkg) to setup cross-compilation environment
9897
$ cmake . -DCMAKE_TOOLCHAIN_FILE=$(pwd)/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=<triplet>
9998
# The following triplets are tested in CI:
10099
# * x64-linux (both for Ubuntu and ALpine Linux)
101100
# * arm64-linux (Ubuntu)
102101
# * x64-osx
103102
# * arm64-osx
104-
# * x64-mingw-static
103+
# * x64-windows-static
105104

106105
# compilation
107106
$ make

0 commit comments

Comments
 (0)