1
0
Fork 0
flightgear/3rdparty/CMakeLists.txt
James Hogan 595c8a2fcb
CMake: Fallback to built-in osgXR library
Fall back to using the new built-in osgXR library in 3rdparty/ if no
system library is provided and OpenXR is available.
2022-01-13 18:01:00 +00:00

35 lines
581 B
CMake

if (NOT SYSTEM_SQLITE)
add_subdirectory(sqlite3)
endif()
if (ENABLE_IAX)
add_subdirectory(iaxclient/lib)
endif()
add_subdirectory(mongoose)
add_subdirectory(cjson)
add_subdirectory(flite_hts_engine)
if (NOT SYSTEM_HTS_ENGINE)
add_subdirectory(hts_engine_API)
endif()
if (ENABLE_HID_INPUT)
add_subdirectory(hidapi)
endif()
add_subdirectory(fonts)
if (ENABLE_PLIB_JOYSTICK)
add_subdirectory(joystick)
endif()
if (NOT SYSTEM_CPPUNIT)
add_subdirectory(cppunit)
endif()
if (ENABLE_OSGXR AND NOT ENABLE_SYSTEM_OSGXR)
add_subdirectory(osgXR)
endif()