Skip to content

Commit

Permalink
Merge pull request #35 from UltraStar-Deluxe/fix-taglib-location
Browse files Browse the repository at this point in the history
Windows: install taglib in app folder instead of globally
  • Loading branch information
DeinAlptraum authored Jun 17, 2024
2 parents d33f62f + 16b92af commit 3935274
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
cd taglib
cmake -B build -G "Visual Studio 17 2022" -A x64 -DWITH_ZLIB=OFF -DBUILD_SHARED_LIBS=ON -DENABLE_STATIC_RUNTIME=OFF -DBUILD_TESTING=OFF
msbuild build/install.vcxproj -p:Configuration=Release
cp -r "C:/Program Files/taglib/include/taglib" ../include
copy build/taglib/Release/tag.dll ../lib/win64
copy build/taglib/Release/tag.lib ../lib/win64
- name: Install ZenLib
run: |
git clone https://github.com/MediaArea/ZenLib.git
Expand Down
7 changes: 3 additions & 4 deletions src/UltraStar-Manager.pro
Original file line number Diff line number Diff line change
Expand Up @@ -243,18 +243,17 @@ INCLUDEPATH += . \

win32 {
INCLUDEPATH += ../include/cld2/public \
"C:/Program Files/taglib/include/taglib" \
../include/taglib \
"C:/Program Files/MediaInfoLib/include"

LIBS += -L"../lib/win64" \
-lcld2
-lcld2 \
-ltag
LIBS += -L"C:/Program Files/MediaInfoLib/lib" \
-lmediainfo \
-lzen
LIBS += -L"C:/Program Files/zlib/lib" \
-lzlib
LIBS += -L"C:/Program Files/taglib/lib" \
-ltag

RC_ICONS += UltraStar-Manager.ico
}
Expand Down

0 comments on commit 3935274

Please sign in to comment.