Changeset 5529ab5 in opengl-game
- Timestamp:
- Sep 1, 2019, 9:28:16 PM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 76d19a8
- Parents:
- d8cb15e
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
FileStackWalker.cpp
rd8cb15e r5529ab5 1 1 #include "FileStackWalker.h" 2 2 3 // Put this stuff in some common header shared by this and CrashLogger4 3 // Put this stuff in some common header shared by this and CrashLogger 5 4 -
NewOpenGLGame.vcxproj
rd8cb15e r5529ab5 140 140 </ItemDefinitionGroup> 141 141 <ItemGroup> 142 <ClCompile Include=" CrashLogger.cpp" />142 <ClCompile Include="crash-logger.cpp" /> 143 143 <ClCompile Include="FileStackWalker.cpp" /> 144 144 <ClCompile Include="IMGUI\imgui.cpp" /> … … 152 152 </ItemGroup> 153 153 <ItemGroup> 154 <ClInclude Include=" CrashLogger.h" />154 <ClInclude Include="crash-logger.hpp" /> 155 155 <ClInclude Include="FileStackWalker.h" /> 156 156 <ClInclude Include="IMGUI\imgui.h" /> -
crash-logger.cpp
rd8cb15e r5529ab5 1 #include " CrashLogger.h"1 #include "crash-logger.hpp" 2 2 3 3 #include <cstdlib> -
makefile
rd8cb15e r5529ab5 22 22 # as this well prevent regenerating .o files for unchanged .cpp files 23 23 24 newgame: new-game.cpp logger.cpp utils.cpp CrashLogger.cpp imgui_impl_glfw_gl3.cpp $(IMGUI_FILES)24 newgame: new-game.cpp logger.cpp utils.cpp crash-logger.cpp imgui_impl_glfw_gl3.cpp $(IMGUI_FILES) 25 25 $(CC) $^ $(DEP) $(CFLAGS) -o $@ 26 26 -
new-game.cpp
rd8cb15e r5529ab5 32 32 #include "Compiler.h" 33 33 34 #include " CrashLogger.h"34 #include "crash-logger.hpp" 35 35 36 36 using namespace std;
Note:
See TracChangeset
for help on using the changeset viewer.