1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-25 11:52:40 +01:00

Fixed Bullet include paths.

This commit is contained in:
Timmy Sjöstedt 2014-08-15 23:49:58 +02:00
parent ba7eb63941
commit dfafa9e218
3 changed files with 3 additions and 3 deletions

View File

@ -11,4 +11,4 @@ add_library(rwengine
target_link_libraries(rwengine sfml-window sfml-audio GLEW mad)
include_directories(include /usr/include/bullet)
include_directories(include ${BULLET_INCLUDE_DIR})

View File

@ -10,7 +10,7 @@ add_executable(rwgame
debugstate.cpp
)
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" ${BULLET_INCLUDE_DIRS})
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" ${BULLET_INCLUDE_DIR})
target_link_libraries( rwgame rwengine sfml-graphics sfml-window sfml-system GL GLEW ${BULLET_LIBRARIES} )

View File

@ -15,7 +15,7 @@ add_executable(rwviewer
AnimationListModel.cpp
AnimationListWidget.cpp)
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" ${BULLET_INCLUDE_DIRS})
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" ${BULLET_INCLUDE_DIR})
target_link_libraries(rwviewer rwengine sfml-graphics sfml-system GL GLEW ${BULLET_LIBRARIES})
qt5_use_modules(rwviewer Widgets OpenGL)