2013-09-25 12:54:16 +00:00
|
|
|
|
|
|
|
if (NOT SYSTEM_SQLITE)
|
|
|
|
add_subdirectory(sqlite3)
|
|
|
|
endif()
|
2013-09-27 14:05:45 +00:00
|
|
|
|
2013-09-27 18:24:19 +00:00
|
|
|
if (ENABLE_IAX)
|
|
|
|
add_subdirectory(iaxclient/lib)
|
|
|
|
endif()
|
2014-03-03 20:59:16 +00:00
|
|
|
|
|
|
|
add_subdirectory(mongoose)
|
|
|
|
add_subdirectory(cjson)
|
2014-03-10 09:32:03 +00:00
|
|
|
|
|
|
|
if (ENABLE_FLITE)
|
|
|
|
add_subdirectory(flite_hts_engine)
|
2014-04-28 19:33:48 +00:00
|
|
|
|
|
|
|
if (SYSTEM_HTS_ENGINE)
|
|
|
|
set(HTS_Engine_FIND_REQUIRED TRUE)
|
|
|
|
find_package(HtsEngine)
|
|
|
|
|
|
|
|
include_directories(${HTS_ENGINE_INCLUDE_DIR})
|
|
|
|
message(STATUS "Using HTS engine includes at: ${HTS_ENGINE_INCLUDE_DIR}")
|
|
|
|
message(STATUS "Using HTS engine libraries: ${HTS_ENGINE_LIBRARIES}")
|
|
|
|
else()
|
|
|
|
add_subdirectory(hts_engine_API)
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/3rdparty/hts_engine_API/include )
|
|
|
|
endif()
|
2014-03-10 09:32:03 +00:00
|
|
|
endif()
|