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

set (GL ${CMAKE_CURRENT_LIST_DIR})

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


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


add_subdirectory(glad)