From 68fed30b60ad77e1bc7a4cc7becf42b19a3987b8 Mon Sep 17 00:00:00 2001 From: Joshua Brookover Date: Sat, 17 Sep 2016 16:03:42 -0500 Subject: [PATCH] Added the bgfx includes to the project --- cmake/bgfx.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/bgfx.cmake b/cmake/bgfx.cmake index 0e353a3..0223450 100755 --- a/cmake/bgfx.cmake +++ b/cmake/bgfx.cmake @@ -20,7 +20,7 @@ if( NOT IS_DIRECTORY ${BGFX_DIR} ) endif() # Grab the bgfx source files -file( GLOB BGFX_SOURCES ${BGFX_DIR}/src/*.cpp ${BGFX_DIR}/src/*.mm ${BGFX_DIR}/src/*.h ) +file( GLOB BGFX_SOURCES ${BGFX_DIR}/src/*.cpp ${BGFX_DIR}/src/*.mm ${BGFX_DIR}/src/*.h ${BGFX_DIR}/include/bgfx/*.h ${BGFX_DIR}/include/bgfx/c99/*.h ) # Create the bgfx target add_library( bgfx STATIC ${BGFX_SOURCES} )