Changeset 3b7d497 in opengl-game for VulkanGame.vcxproj


Ignore:
Timestamp:
Jan 2, 2021, 4:19:31 PM (4 years ago)
Author:
Dmitry Portnoy <dportnoy@…>
Branches:
feature/imgui-sdl
Children:
6493e43
Parents:
c324d6a
Message:

Start implementing an ImGUI ui on top of SDL and Vulkan using some example code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • VulkanGame.vcxproj

    rc324d6a r3b7d497  
    148148    <ClCompile Include="gui\screen.cpp" />
    149149    <ClCompile Include="gui\ui-element.cpp" />
     150    <ClCompile Include="IMGUI\imgui.cpp" />
     151    <ClCompile Include="IMGUI\imgui_demo.cpp" />
     152    <ClCompile Include="IMGUI\imgui_draw.cpp" />
     153    <ClCompile Include="IMGUI\imgui_impl_sdl.cpp" />
     154    <ClCompile Include="IMGUI\imgui_impl_vulkan.cpp" />
     155    <ClCompile Include="IMGUI\imgui_widgets.cpp" />
    150156    <ClCompile Include="logger.cpp" />
    151157    <ClCompile Include="main-vulkan.cpp" />
     158    <ClCompile Include="sdl-game.cpp" />
    152159    <ClCompile Include="StackWalker.cpp" />
    153160    <ClCompile Include="utils.cpp" />
     
    170177    <ClInclude Include="gui\screen.hpp" />
    171178    <ClInclude Include="gui\ui-element.hpp" />
     179    <ClInclude Include="IMGUI\imconfig.h" />
     180    <ClInclude Include="IMGUI\imgui.h" />
     181    <ClInclude Include="IMGUI\imgui_impl_sdl.h" />
     182    <ClInclude Include="IMGUI\imgui_impl_vulkan.h" />
     183    <ClInclude Include="IMGUI\imgui_internal.h" />
     184    <ClInclude Include="IMGUI\imstb_rectpack.h" />
     185    <ClInclude Include="IMGUI\imstb_textedit.h" />
     186    <ClInclude Include="IMGUI\imstb_truetype.h" />
    172187    <ClInclude Include="logger.hpp" />
     188    <ClInclude Include="sdl-game.hpp" />
    173189    <ClInclude Include="StackWalker.h" />
    174190    <ClInclude Include="utils.hpp" />
Note: See TracChangeset for help on using the changeset viewer.