1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00

Remove libsndfile dependency

This commit is contained in:
darkf 2017-09-13 12:47:40 -05:00 committed by Daniel Evans
parent d69fdffdd1
commit ec2e940924
2 changed files with 0 additions and 3 deletions

View File

@ -85,7 +85,6 @@ find_package(OpenGL REQUIRED)
find_package(OpenAL REQUIRED)
find_package(Bullet REQUIRED)
find_package(GLM REQUIRED)
find_package(LibSndFile REQUIRED)
find_package(FFmpeg REQUIRED)
find_package(SDL2 REQUIRED)

View File

@ -140,7 +140,6 @@ endif()
target_link_libraries(rwengine
rwlib
${LIBSNDFILE_LIBRARY}
${FFMPEG_LIBRARIES}
${OPENAL_LIBRARY}
${OPENRW_PLATFORM_LIBS}
@ -148,7 +147,6 @@ target_link_libraries(rwengine
include_directories(SYSTEM
${BULLET_INCLUDE_DIR}
${LIBSNDFILE_INCLUDE_DIR}
${FFMPEG_INCLUDE_DIR}
${OPENAL_INCLUDE_DIR}
)