mirror of https://github.com/axmolengine/axmol.git
Merge pull request #5259 from Dhilan007/develop_crash
fix miss websocket lib for HelloLua on vs.
This commit is contained in:
commit
b736da52f7
|
@ -106,6 +106,11 @@
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Command>xcopy "$(ProjectDir)..\..\..\..\cocos\scripting\lua\script" "$(ProjectDir)..\..\HelloLua\Resources" /e /Y</Command>
|
<Command>xcopy "$(ProjectDir)..\..\..\..\cocos\scripting\lua\script" "$(ProjectDir)..\..\HelloLua\Resources" /e /Y</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
|
<PreLinkEvent>
|
||||||
|
<Command>if not exist "$(OutDir)" mkdir "$(OutDir)"
|
||||||
|
xcopy /Y /Q "$(ProjectDir)..\..\..\..\external\websockets\prebuilt\win32\*.*" "$(OutDir)"
|
||||||
|
</Command>
|
||||||
|
</PreLinkEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Midl>
|
<Midl>
|
||||||
|
@ -146,6 +151,11 @@
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
</Link>
|
</Link>
|
||||||
|
<PreLinkEvent>
|
||||||
|
<Command>if not exist "$(OutDir)" mkdir "$(OutDir)"
|
||||||
|
xcopy /Y /Q "$(ProjectDir)..\..\..\..\external\websockets\prebuilt\win32\*.*" "$(OutDir)"
|
||||||
|
</Command>
|
||||||
|
</PreLinkEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\Classes\AppDelegate.cpp" />
|
<ClCompile Include="..\Classes\AppDelegate.cpp" />
|
||||||
|
|
Loading…
Reference in New Issue