Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes
Hello,

I am working on a Mac build form our game, and received the Mac SDK from Wwise and I added it to the UnrealEngine3/Development/External/Wwise/SDK folder, both on Windows and on Mac. Also I installed Wwise on Mac.

But I am getting errors which are related to Wwise when trying to compile the Mac project from Karmaflow.
All the errors related to Wwise are a some file that cannot be found in the include header from a *.h file. I had no problems with these files when compiling for Windows, but they keep coming up when compiling for mac.

Example from one of the errors:

2>  In file included from ../../Development/Intermediate/KFGame/Mac/Release/Engine/Unity_UnGameEtAl.cpp:9:
2>D:\Basecamp Games\Projects\Karmaflow\Development-UE3\Development\Src\Engine\Src\UnGame.cpp(35): fatal error : '..\..\AkAudio\Inc\AkAudioDevice.h' file not found
2>  #include "..\..\AkAudio\Inc\AkAudioDevice.h"
2>           ^
2>  1 error generated.

The file AkAudioDevice.h is not missing at all in the directory it points to, but somehow when building for mac I keep getting these errors. Any idea where this is coming from?

Thanks for any help in advance!

Alexander
in General Discussion by Ivo v. (100 points)

1 Answer

0 votes
I ran into this as well and I had to change the include paths from Windows-style backslashes (\) to Unix-style forward slashes (/) in order to get this code to compile.
by Tom F. (200 points)
...