LogManager: Move android logcat code into the proper place.

This commit is contained in:
Scott Mansell
2015-10-04 02:10:43 +13:00
parent 5f8a67250f
commit f84577b90b
3 changed files with 50 additions and 7 deletions

View File

@ -32,9 +32,16 @@ set(SRCS BreakPoints.cpp
x64Emitter.cpp
Crypto/bn.cpp
Crypto/ec.cpp
Logging/ConsoleListenerNix.cpp
Logging/LogManager.cpp)
if(ANDROID)
set(SRCS ${SRCS}
Logging/ConsoleListenerDroid.cpp)
else()
set(SRCS ${SRCS}
Logging/ConsoleListenerNix.cpp)
endif()
set(LIBS enet)
if(_M_ARM_64)
set(SRCS ${SRCS}