Skip to content

Commit

Permalink
Bass.dll path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emcifuntik committed Mar 22, 2023
1 parent 17314c3 commit 374f8fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bass.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ package("bass")
on_install("windows", function (package)
os.cp("c/x64/bass.lib", package:installdir("lib"))
os.cp("x64/bass.dll", package:installdir("bin"))
os.cp("C/bass.h", package:installdir("include"))
os.cp("c/bass.h", package:installdir("include"))
end)

on_install("linux", function (package)
os.cp("libs/x86_64/libbass.so", package:installdir("bin"))
os.cp("C/bass.h", package:installdir("include"))
os.cp("c/bass.h", package:installdir("include"))
end)

0 comments on commit 374f8fe

Please sign in to comment.