Skip to content

Commit

Permalink
OpenAL|Windows|Installer: Deploy missing openal32.dll
Browse files Browse the repository at this point in the history
This should solve the error loading the OpenAL audio plugin. The
plugin itself may still be broken, though...
  • Loading branch information
skyjake committed Dec 26, 2013
1 parent a4646fe commit 85a37c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions distrib/win32/setup.iss.template
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Source: "bin\QtNetwork4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Compon
Source: "bin\QtOpenGL4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "bin\imageformats\qjpeg4.dll"; DestDir: "{app}\bin\imageformats"; Flags: ignoreversion; Components: Engine
Source: "bin\SDL.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "bin\OpenAL32.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "bin\eax.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "bin\libogg-0.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "bin\libvorbis-0.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Expand Down
5 changes: 5 additions & 0 deletions doomsday/dep_openal.pri
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ win32 {
# Windows.
INCLUDEPATH += $$OPENAL_DIR/include
LIBS += -L$$OPENAL_DIR/libs/win32 -lopenal32

# Deploy openal32.dll (check that it's present in libs/win32)
INSTALLS += oallibs
oallibs.files = $$OPENAL_DIR/libs/win32/openal32.dll
oallibs.path = $$DENG_LIB_DIR
}
else:macx {
# Mac OS X.
Expand Down

0 comments on commit 85a37c8

Please sign in to comment.