ViewerMiscLibs.cmake 553 B

1234567891011121314151617181920212223
  1. # -*- cmake -*-
  2. if (VIEWERMISCLIBS_CMAKE_INCLUDED)
  3. return()
  4. endif (VIEWERMISCLIBS_CMAKE_INCLUDED)
  5. set (VIEWERMISCLIBS_CMAKE_INCLUDED TRUE)
  6. include(00-BuildOptions)
  7. include(Prebuilt)
  8. # Vivox binaries only available for x86_64
  9. if (ARCH STREQUAL "x86_64")
  10. use_prebuilt_binary(vivox)
  11. endif ()
  12. # SSE2 to Neon conversion header is needed for arm64 builds
  13. if (ARCH STREQUAL "arm64")
  14. use_prebuilt_binary(sse2neon)
  15. endif ()
  16. # *TODO: check for libuuid devel files when USESYSTEMLIBS
  17. if (LINUX AND NOT USESYSTEMLIBS)
  18. use_prebuilt_binary(libuuid)
  19. endif ()