cmake: add build system integration of mobile clients

This commit is contained in:
Marc-André Moreau 2012-10-22 12:31:30 -04:00
parent eec6f5c064
commit 024ade069e
2 changed files with 9 additions and 0 deletions

2
client/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
iOS
Android

View File

@ -43,3 +43,10 @@ if(APPLE)
add_subdirectory(Mac)
endif()
if(ANDROID)
if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/Android")
message(STATUS "Adding Android client")
add_subdirectory(Android)
endif()
endif()