Changeset 8a6d19d in opengl-game
- Timestamp:
- Jun 23, 2017, 8:07:56 PM (8 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 92bc4fe
- Parents:
- b33f87b
- Files:
-
- 19 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rb33f87b r8a6d19d 1 1 game 2 demo 2 3 3 4 # Visual Studio files -
README.txt
rb33f87b r8a6d19d 1 TODO: Make sure the instructions in this README still work and, if not, update them 2 1 3 Installation Instructions for Linux 2 4 --------------------------------------- 3 5 4 6 -Compile GLEW from source 5 (download and follow ingthe instructions in README.md)7 (download and follow the instructions in README.md) 6 8 7 9 sudo apt-get install cmake xorg-dev libglew-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev -
makefile
rb33f87b r8a6d19d 10 10 endif 11 11 12 game: game.cpp 12 game: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp 13 $(CC) $? $(DEP) $(CFLAGS) -o $@ 14 15 demo: game06.cpp common/shader.cpp common/texture.cpp common/controls.cpp 13 16 $(CC) $? $(DEP) $(CFLAGS) -o $@ 14 17 15 18 clean: 16 19 rm -f game 20 rm -f demo
Note:
See TracChangeset
for help on using the changeset viewer.