mirror of https://github.com/axmolengine/axmol.git
issue #2087: Adding customevent and CustomEventListener to VS project.
This commit is contained in:
parent
e051903b38
commit
ebedd7b59e
|
@ -175,6 +175,8 @@ xcopy /Y /Q "$(ProjectDir)..\platform\third_party\win32\libraries\*.*" "$(OutDir
|
||||||
<ClCompile Include="..\actions\CCActionTween.cpp" />
|
<ClCompile Include="..\actions\CCActionTween.cpp" />
|
||||||
<ClCompile Include="..\event_dispatcher\CCAccelerationEvent.cpp" />
|
<ClCompile Include="..\event_dispatcher\CCAccelerationEvent.cpp" />
|
||||||
<ClCompile Include="..\event_dispatcher\CCAccelerationEventListener.cpp" />
|
<ClCompile Include="..\event_dispatcher\CCAccelerationEventListener.cpp" />
|
||||||
|
<ClCompile Include="..\event_dispatcher\CCCustomEvent.cpp" />
|
||||||
|
<ClCompile Include="..\event_dispatcher\CCCustomEventListener.cpp" />
|
||||||
<ClCompile Include="..\event_dispatcher\CCEvent.cpp" />
|
<ClCompile Include="..\event_dispatcher\CCEvent.cpp" />
|
||||||
<ClCompile Include="..\event_dispatcher\CCEventDispatcher.cpp" />
|
<ClCompile Include="..\event_dispatcher\CCEventDispatcher.cpp" />
|
||||||
<ClCompile Include="..\event_dispatcher\CCEventListener.cpp" />
|
<ClCompile Include="..\event_dispatcher\CCEventListener.cpp" />
|
||||||
|
@ -335,6 +337,8 @@ xcopy /Y /Q "$(ProjectDir)..\platform\third_party\win32\libraries\*.*" "$(OutDir
|
||||||
<ClInclude Include="..\actions\CCActionTween.h" />
|
<ClInclude Include="..\actions\CCActionTween.h" />
|
||||||
<ClInclude Include="..\event_dispatcher\CCAccelerationEvent.h" />
|
<ClInclude Include="..\event_dispatcher\CCAccelerationEvent.h" />
|
||||||
<ClInclude Include="..\event_dispatcher\CCAccelerationEventListener.h" />
|
<ClInclude Include="..\event_dispatcher\CCAccelerationEventListener.h" />
|
||||||
|
<ClInclude Include="..\event_dispatcher\CCCustomEvent.h" />
|
||||||
|
<ClInclude Include="..\event_dispatcher\CCCustomEventListener.h" />
|
||||||
<ClInclude Include="..\event_dispatcher\CCEvent.h" />
|
<ClInclude Include="..\event_dispatcher\CCEvent.h" />
|
||||||
<ClInclude Include="..\event_dispatcher\CCEventDispatcher.h" />
|
<ClInclude Include="..\event_dispatcher\CCEventDispatcher.h" />
|
||||||
<ClInclude Include="..\event_dispatcher\CCEventListener.h" />
|
<ClInclude Include="..\event_dispatcher\CCEventListener.h" />
|
||||||
|
|
|
@ -566,6 +566,12 @@
|
||||||
<ClCompile Include="..\physics\Box2D\CCPhysicsWorldInfo.cpp">
|
<ClCompile Include="..\physics\Box2D\CCPhysicsWorldInfo.cpp">
|
||||||
<Filter>physics\Box2D</Filter>
|
<Filter>physics\Box2D</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\event_dispatcher\CCCustomEvent.cpp">
|
||||||
|
<Filter>event_dispatcher</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\event_dispatcher\CCCustomEventListener.cpp">
|
||||||
|
<Filter>event_dispatcher</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\base_nodes\CCAtlasNode.h">
|
<ClInclude Include="..\base_nodes\CCAtlasNode.h">
|
||||||
|
@ -1143,5 +1149,11 @@
|
||||||
<ClInclude Include="..\physics\Box2D\CCPhysicsWorldInfo.h">
|
<ClInclude Include="..\physics\Box2D\CCPhysicsWorldInfo.h">
|
||||||
<Filter>physics\Box2D</Filter>
|
<Filter>physics\Box2D</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\event_dispatcher\CCCustomEvent.h">
|
||||||
|
<Filter>event_dispatcher</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\event_dispatcher\CCCustomEventListener.h">
|
||||||
|
<Filter>event_dispatcher</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue