maybe this will work better?
This commit is contained in:
parent
ac6c4cd330
commit
77265c9893
2 changed files with 2 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -65,6 +65,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
version: 7
|
version: 7
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: brew install imagemagick vips pkg-config
|
run: brew install imagemagick vips
|
||||||
- name: Build
|
- name: Build
|
||||||
run: pnpm install --config.strict-peer-dependencies=false && pnpm run build
|
run: pnpm install --config.strict-peer-dependencies=false && pnpm run build
|
||||||
|
|
|
@ -36,4 +36,5 @@ target_link_libraries(${PROJECT_NAME} ${ImageMagick_LIBRARIES})
|
||||||
|
|
||||||
pkg_check_modules(VIPS REQUIRED vips-cpp)
|
pkg_check_modules(VIPS REQUIRED vips-cpp)
|
||||||
include_directories(${VIPS_INCLUDE_DIRS})
|
include_directories(${VIPS_INCLUDE_DIRS})
|
||||||
|
link_directories(${VIPS_LIBRARY_DIRS})
|
||||||
target_link_libraries(${PROJECT_NAME} ${VIPS_LIBRARIES})
|
target_link_libraries(${PROJECT_NAME} ${VIPS_LIBRARIES})
|
||||||
|
|
Loading…
Reference in a new issue