Working bgfx renderer base on Windows

This commit is contained in:
2015-09-08 20:36:03 +02:00
parent 78ec82699c
commit 17a00fef85
3 changed files with 14 additions and 8 deletions
Regular → Executable
-3
View File
@@ -7,7 +7,6 @@ find_package(Boost REQUIRED COMPONENTS system filesystem thread chrono)
find_package(assimp REQUIRED)
find_package(ZLIB REQUIRED)
find_package(PNG REQUIRED)
find_package(X11 REQUIRED)
find_package(BGFX REQUIRED)
# GLM
@@ -20,7 +19,6 @@ include_directories(
${Boost_INCLUDE_DIRS}
${assimp_INCLUDE_DIRS}
${PNG_INCLUDE_DIRS}
${X11_INCLUDE_DIR}
${BGFX_INCLUDE_DIRS}
)
@@ -72,7 +70,6 @@ target_link_libraries(game
${Boost_LIBRARIES}
${assimp_LIBRARIES}
${PNG_LIBRARIES}
${X11_LIBRARIES}
${BGFX_LIBRARIES}
)