mirror of
https://github.com/love2d/megasource.git
synced 2026-08-21 13:10:24 +02:00
Fix Android compile error.
This commit is contained in:
@@ -13,9 +13,15 @@ set(OGG_SRC
|
||||
if(OGG_BUILD_STATIC)
|
||||
add_library(ogg-static STATIC ${OGG_SRC})
|
||||
target_include_directories(ogg-static PUBLIC include)
|
||||
if(ANDROID)
|
||||
target_include_directories(ogg-static PUBLIC android)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(OGG_BUILD_SHARED)
|
||||
add_library(ogg SHARED ${OGG_SRC} win32/ogg.def)
|
||||
target_include_directories(ogg PUBLIC include)
|
||||
if(ANDROID)
|
||||
target_include_directories(ogg PUBLIC android)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user