Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-asriyan committed Oct 18, 2023
1 parent 969d889 commit 80c5825
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ jobs:

- name: Install run-time dependencies
run: |
[[ "${{ matrix.case }}" == "apng" ]] && brew install ffmpeg || echo ok;
[[ "${{ matrix.case }}" == "gif" ]] && brew install gifski || echo ok;
[[ "${{ matrix.case }}" == "webp" ]] && brew install webp || echo ok;
[[ "${{ matrix.case }}" == "apng" ]] && brew install ffmpeg;
[[ "${{ matrix.case }}" == "gif" ]] && brew install gifski;
[[ "${{ matrix.case }}" == "webp" ]] && brew install webp;
- name: Download artifact
uses: actions/download-artifact@v3
Expand Down
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ set(CMAKE_CXX_STANDARD 17)
# building and linking the project's internal libraries dynamically
set(BUILD_SHARED_LIBS OFF)

# search for static versions of external libraries
IF(WIN32)
SET(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a)
ELSE(WIN32)
SET(CMAKE_FIND_LIBRARY_SUFFIXES .a)
ENDIF(WIN32)
# # search for static versions of external libraries
# IF(WIN32)
# SET(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a)
# ELSE(WIN32)
# SET(CMAKE_FIND_LIBRARY_SUFFIXES .a)
# ENDIF(WIN32)

# enable static linking of system libraries
if(NOT CMAKE_SYSTEM_NAME STREQUAL "Darwin")
Expand Down

0 comments on commit 80c5825

Please sign in to comment.