xmake.lua 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package("pcl")
  2. set_homepage("https://pointclouds.org/")
  3. set_description("The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing.")
  4. set_license("BSD-3-Clause")
  5. add_urls("https://github.com/PointCloudLibrary/pcl/archive/refs/tags/pcl-$(version).tar.gz",
  6. "https://github.com/PointCloudLibrary/pcl.git")
  7. add_versions("1.12.0", "21dfa9a268de9675c1f94d54d9402e4e02120a0aa4215d064436c52b7d5bd48f")
  8. add_versions("1.12.1", "dc0ac26f094eafa7b26c3653838494cc0a012bd1bdc1f1b0dc79b16c2de0125a")
  9. add_versions("1.14.0", "de297b929eafcb93747f12f98a196efddf3d55e4edf1b6729018b436d5be594d")
  10. add_versions("1.14.1", "5dc5e09509644f703de9a3fb76d99ab2cc67ef53eaf5637db2c6c8b933b28af6")
  11. add_patches("1.14.1", "patches/1.14.1/clang.patch", "01bf08ac7eafc5748d38fdabac1be3b18b9ec1b2e88a4f458a2cfab3dfac5356")
  12. add_patches("1.14.1", "patches/1.14.1/msbuild.patch", "2a256b8916d8c32c204bf0ec57b279d212856a5a1b28ef174aaa63e14554d082")
  13. add_patches("1.14.0", "https://github.com/PointCloudLibrary/pcl/commit/16c92e558bd146a9f68d58cd5aca64836be7c038.patch", "a7d025bb4ce2b4551029dcdc4db0cbf8f1eccd59cbcb7ddeebf5dac35cdaeac0")
  14. add_configs("vtk", {description = "Build with vtk.", default = false, type = "boolean"})
  15. add_configs("cuda", {description = "Build with cuda.", default = false, type = "boolean"})
  16. add_deps("cmake")
  17. add_deps("eigen", "lz4", "flann", "zlib", "libpng", "qhull", "glew")
  18. on_load(function (package)
  19. local version = assert(package:version())
  20. package:add("includedirs", "include/pcl-" .. version:major() .. "." .. version:minor())
  21. local boost_opt = {
  22. configs = {filesystem = true, serialization = true, date_time = true, iostreams = true, system = true, thread = true, graph = true}
  23. }
  24. if version:lt("1.14.1") then
  25. boost_opt.version = "<1.85.0"
  26. else
  27. boost_opt.configs.asio = true
  28. end
  29. package:add("deps", "boost", boost_opt)
  30. if package:config("vtk") then
  31. package:add("deps", "vtk")
  32. end
  33. if package:config("cuda") then
  34. package:add("deps", "cuda", {system = true})
  35. end
  36. package:addenv("PATH", "bin")
  37. end)
  38. on_install("windows", "linux", "macosx", function (package)
  39. io.replace("CMakeLists.txt", "set(CMAKE_CXX_FLAGS_DEFAULT \"/DWIN32 /D_WINDOWS /W3 /GR /EHsc\")", "set(CMAKE_CXX_FLAGS_DEFAULT \" /DWIN32 /D_WINDOWS /W3 /GR /EHsc\")\nstring(APPEND CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS_DEFAULT})", {plain = true})
  40. io.replace("cmake/Modules/FindFLANN.cmake", "flann_cpp", "flann")
  41. if package:version():le("1.12.0") then
  42. io.replace("cmake/pcl_options.cmake", "set(CMAKE_FIND_LIBRARY_SUFFIXES", "#set(CMAKE_FIND_LIBRARY_SUFFIXES", {plain = true})
  43. end
  44. local configs = {"-DWITH_OPENGL=OFF", "-DWITH_PCAP=OFF", "-DWITH_QT=OFF", "-DWITH_LIBUSB=OFF", "-DBoost_USE_STATIC_LIBS=ON", "-DPCL_ALLOW_BOTH_SHARED_AND_STATIC_DEPENDENCIES=ON"}
  45. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
  46. table.insert(configs, "-DPCL_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  47. table.insert(configs, "-DWITH_VTK=" .. (package:config("vtk") and "ON" or "OFF"))
  48. table.insert(configs, "-DWITH_CUDA=" .. (package:config("cuda") and "ON" or "OFF"))
  49. if package:is_plat("windows") then
  50. table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  51. end
  52. import("package.tools.cmake").install(package, configs, {packagedeps = {"lz4", "dl"}})
  53. end)
  54. on_test(function (package)
  55. assert(package:check_cxxsnippets({test = [[
  56. void test() {
  57. using PointT = pcl::PointXYZI;
  58. pcl::PointCloud<PointT>::Ptr cloud (new pcl::PointCloud<PointT>);
  59. }
  60. ]]}, {configs = {languages = "c++14"}, includes = {"pcl/point_cloud.h", "pcl/point_types.h"}}))
  61. end)