Skip to content

Commit d4e5ae0

Browse files
committed
add basic application skeleton for glfw + OpenGL
0 parents  commit d4e5ae0

File tree

6 files changed

+836
-0
lines changed

6 files changed

+836
-0
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#Code::Blocks files
2+
*.depend
3+
*.layout
4+
5+
# object and binary directories
6+
bin/
7+
obj/
8+
# object files
9+
*.o
10+
11+
# build directory
12+
build/
13+
b/
14+
15+
# cppcheck results
16+
CppCheckResults.xml

CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# We might support earlier versions, too, but try to use a more recent one.
2+
cmake_minimum_required (VERSION 3.8)
3+
4+
project(webp-viewer)
5+
6+
enable_testing()
7+
8+
# Recurse into subdirectory for the main executable.
9+
add_subdirectory (webp-viewer)

0 commit comments

Comments
 (0)