summaryrefslogtreecommitdiff
path: root/src/opengl/CMakeLists.txt
blob: 27d19d62c61fb376f229b5c525b691573d00c4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project(honey_engine)

set (GL ${CMAKE_CURRENT_LIST_DIR})

target_sources(honey PUBLIC
	${GL}/data.c
	${GL}/drawing.c
	${GL}/shader.c
	${GL}/texture.c
	${GL}/gl.c
)


target_sources(test PUBLIC
	${GL}/gl.test.c
	${GL}/window.test.c
)


add_subdirectory(glad)