summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2024-04-20 01:44:26 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2024-04-20 01:44:26 +0200
commitd2bd3c62408945227bb13133ad6ce270851b4872 (patch)
tree377f322435bc3a1ebf1ef5d89f3fc74e049a8170 /.github/workflows
parent7601eea77247b4499d38e88ed454c3991728ce66 (diff)
CMake/MSVC: Fix shared library build, add to GitHub CI build
Fault was a simple typo or copy-paste error
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5bad59d49..561ce07a8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -130,7 +130,7 @@ jobs:
- name: Configure CMake
working-directory: ${{github.workspace}}/build
- run: cmake -D FLTK_USE_SYSTEM_LIBJPEG:BOOL=OFF -D FLTK_USE_SYSTEM_LIBPNG:BOOL=OFF -D FLTK_USE_SYSTEM_ZLIB:BOOL=OFF ..
+ run: cmake -D FLTK_USE_SYSTEM_LIBJPEG:BOOL=OFF -D FLTK_USE_SYSTEM_LIBPNG:BOOL=OFF -D FLTK_USE_SYSTEM_ZLIB:BOOL=OFF -DFLTK_BUILD_SHARED_LIBS:BOOL=ON ..
- name: Build
working-directory: ${{github.workspace}}/build