diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-05 03:32:32 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-08 22:11:22 +0200 |
commit | 56a1df6efaab87433d21954774118d02859ebe17 (patch) | |
tree | 469a88498b52db2c22007d78563cadf48d4bbd95 /.github | |
parent | 23f42ca6b833dc1a76108fd2f72bde90489ce015 (diff) | |
download | sciteco-56a1df6efaab87433d21954774118d02859ebe17.tar.gz |
nightly builds: fixed the win32-curses build
* We have to list all Win32 DLLs in LIBGLIB_LIBS since we
currently link it in statically.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/nightly.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index dcab877..85912c5 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -86,7 +86,7 @@ jobs: PDCURSES_CFLAGS: -I/mingw32/include/pdcurses/ # The additional Windows libraries are for PDCursesMod/WinGUI: PDCURSES_LIBS: -lpdcurses -lgdi32 -lcomdlg32 - LIBGLIB_LIBS: -lglib-2.0 -lintl -liconv -lpcre -lole32 -lws2_32 + LIBGLIB_LIBS: -lglib-2.0 -lintl -liconv -lpcre -lole32 -lws2_32 -luuid # FIXME: Once there is an --enable-lto, we should use that. CFLAGS: -g -O3 -flto -DGLIB_STATIC_COMPILATION CXXFLAGS: -g -O3 -flto |