adds desktop java junit tests

This commit is contained in:
Eric Christiansen
2012-12-19 14:28:59 -08:00
parent 3de6846d12
commit ad326cb0be
6 changed files with 695 additions and 1 deletions

View File

@@ -295,7 +295,12 @@ endif(ANDROID)
add_dependencies(${lib_target} ${api_target})
add_dependencies(${the_module} ${lib_target})
#android test project
# android test project
if(ANDROID AND BUILD_TESTS)
add_subdirectory(android_test)
endif()
# Desktop Java test project.
if((NOT ANDROID) AND BUILD_TESTS)
add_subdirectory(java_test)
endif()