Inability to create a new C++ project

First question here.

I am unable to make a new C++ project within unity. In any form. Whenever I try to create a project it displays the included text below. I am however able to make a blueprints project but am then unable to add a new c++ class to that project. It states that it then fails to find “Class None” but creates the header and source file in the designated folder.

I tried to change where the project was built as I thought this would deal with the inability to create a C++ project but to no avail. Any ideas??

Carcer

An error occurred while trying to generate project files.

Running C:/Program Files/Epic Games/4.12/Engine/Binaries/DotNET/UnrealBuildTool.exe -projectfiles -project=“C:/Users/1102999/Documents/Unreal 4/Apocalype Alpha/ApocalypseProto/ApocalypseProto.uproject” -game -rocket -progress
Discovering modules, targets and source code for project…
Messages while compiling C:\Program Files\Epic Games\4.12\Engine\Intermediate\Build\BuildRules\UE4Rules.dll:
c:\Program Files\Epic Games\4.12\Engine\Plugins\Wwise\WwiseDemoGame\Plugins\Wwise\Source\AkAudio\AkAudio.Build.cs(7,14) : error CS0101: The namespace ‘’ already contains a definition for ‘AkAudio’
c:\Program Files\Epic Games\4.12\Engine\Plugins\Wwise\WwiseDemoGame\Plugins\Wwise\Source\AudiokineticTools\AudiokineticTools.Build.cs(5,14) : error CS0101: The namespace ‘’ already contains a definition for ‘AudiokineticTools’
UnrealBuildTool Exception: ERROR: UnrealBuildTool encountered an error while compiling source files

Hey Carcer_Dun,

Are you naming your project, “AudiokineticTools”?

Hey,

Nope was naming it something different. Nothing that would throw an error like this as far as I was aware.

Can you tell me what your project was named? Or, can you try and create a new project named, “MyProject” and let me know what happens?

Thanks.

Project was named “ApocalypseAlphaProto”. I also tried to create a new project called “MyProject” in the same location as before and I received the error message again. Included it for posterity’s sake.

An error occurred while trying to generate project files.

Running C:/Program Files/Epic Games/4.12/Engine/Binaries/DotNET/UnrealBuildTool.exe -projectfiles -project=“C:/Users/1102999/Documents/MyProject/MyProject.uproject” -game -rocket -progress
Discovering modules, targets and source code for project…
Messages while compiling C:\Program Files\Epic Games\4.12\Engine\Intermediate\Build\BuildRules\UE4Rules.dll:
c:\Program Files\Epic Games\4.12\Engine\Plugins\Wwise\WwiseDemoGame\Plugins\Wwise\Source\AkAudio\AkAudio.Build.cs(7,14) : error CS0101: The namespace ‘’ already contains a definition for ‘AkAudio’
c:\Program Files\Epic Games\4.12\Engine\Plugins\Wwise\WwiseDemoGame\Plugins\Wwise\Source\AudiokineticTools\AudiokineticTools.Build.cs(5,14) : error CS0101: The namespace ‘’ already contains a definition for ‘AudiokineticTools’
UnrealBuildTool Exception: ERROR: UnrealBuildTool encountered an error while compiling source files

My guess is that there is the a plugin you have installed here:

4.12\Engine\Plugins\Wwise\WwiseDemoGame\Plugins\Wwise\Source

that is causing an issue with building.

Can you try removing this plugin from that location and try again?

Thanks.

That worked! I don’t remember installing that plugin but it works now.

Thank you for your assitance