Added bgfx library, precompiled for linux-gcc-64

This commit is contained in:
2015-09-07 17:41:50 +02:00
parent 7c92b6aef7
commit c7f17c8ef0
8 changed files with 3557 additions and 0 deletions
+4
View File
@@ -7,6 +7,7 @@ find_package(Boost REQUIRED COMPONENTS system filesystem thread chrono)
find_package(assimp REQUIRED)
find_package(ZLIB REQUIRED)
find_package(PNG REQUIRED)
find_package(BGFX REQUIRED)
# GLM
set(INCLUDE_PATH ${CMAKE_SOURCE_DIR}/include)
@@ -18,6 +19,7 @@ include_directories(
${Boost_INCLUDE_DIRS}
${assimp_INCLUDE_DIRS}
${PNG_INCLUDE_DIRS}
${BGFX_INCLUDE_DIRS}
)
file(GLOB SOURCE_FILES_Core
@@ -68,6 +70,7 @@ target_link_libraries(game
${Boost_LIBRARIES}
${assimp_LIBRARIES}
${PNG_LIBRARIES}
${BGFX_LIBRARIES}
)
add_executable(breakout
@@ -81,5 +84,6 @@ target_link_libraries(breakout
${Boost_LIBRARIES}
${assimp_LIBRARIES}
${PNG_LIBRARIES}
${BGFX_LIBRARIES}
)