CMake: add missing includes

This commit is contained in:
Campbell Barton 2017-06-13 14:50:47 +10:00
parent 47b9d0d040
commit eaadfdbdc0
3 changed files with 12 additions and 3 deletions

@ -1,7 +1,11 @@
set(INC gawain)
set(INC
gawain
)
set(INC_SYS ${GLEW_INCLUDE_PATH})
set(INC_SYS
${GLEW_INCLUDE_PATH}
)
set(SRC
src/attrib_binding.c
@ -16,16 +20,19 @@ set(SRC
src/vertex_format.c
gawain/attrib_binding.h
gawain/attrib_binding_private.h
gawain/batch.h
gawain/buffer_id.h
gawain/common.h
gawain/element.h
gawain/immediate.h
gawain/imm_util.h
gawain/immediate.h
gawain/primitive.h
gawain/primitive_private.h
gawain/shader_interface.h
gawain/vertex_buffer.h
gawain/vertex_format.h
gawain/vertex_format_private.h
)
add_definitions(${GL_DEFINITIONS})

@ -99,6 +99,7 @@ set(SRC
engines/basic/basic_engine.h
engines/clay/clay_engine.h
engines/eevee/eevee_engine.h
engines/eevee/eevee_lut.h
engines/eevee/eevee_private.h
engines/external/external_engine.h
)

@ -107,6 +107,7 @@ set(SRC
GPU_immediate.h
GPU_immediate_util.h
GPU_init_exit.h
GPU_lamp.h
GPU_legacy_stubs.h
GPU_material.h
GPU_matrix.h