2013-09-25 13:54:16 +01:00
|
|
|
|
|
|
|
if (NOT SYSTEM_SQLITE)
|
|
|
|
add_subdirectory(sqlite3)
|
|
|
|
endif()
|
2013-09-27 16:05:45 +02:00
|
|
|
|
2013-09-27 20:24:19 +02:00
|
|
|
if (ENABLE_IAX)
|
|
|
|
add_subdirectory(iaxclient/lib)
|
|
|
|
endif()
|
2014-03-03 21:59:16 +01: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 21:33:48 +02: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()
|
2017-10-25 22:56:38 +01:00
|
|
|
|
|
|
|
if (ENABLE_HID_INPUT)
|
|
|
|
add_subdirectory(hidapi)
|
|
|
|
endif()
|
2018-03-06 10:24:13 +01:00
|
|
|
|
2016-01-12 22:44:28 -06:00
|
|
|
if (ENABLE_PLIB_JOYSTICK)
|
|
|
|
add_subdirectory(joystick)
|
|
|
|
endif()
|
|
|
|
|
2018-03-06 10:24:13 +01:00
|
|
|
if (NOT SYSTEM_CPPUNIT)
|
|
|
|
add_subdirectory(cppunit)
|
|
|
|
endif()
|