xmake.lua 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_configs("vtk", {description = "Build with vtk.", default = false, type = "boolean"})
  14. add_configs("cuda", {description = "Build with cuda.", default = false, type = "boolean"})
  15. add_deps("cmake")
  16. add_deps("eigen", "lz4", "flann", "zlib", "libpng", "qhull", "glew")
  17. on_load("windows", "linux", "macosx", function (package)
  18. package:add("includedirs", "include/pcl-" .. package:version():major() .. "." .. package:version():minor())
  19. if package:version():le("1.14.1") then
  20. package:add("deps", "boost", {version = "1.85.0", configs = {filesystem = true, serialization = true, date_time = true, iostreams = true, system = true, thread = true, graph = true}})
  21. else
  22. package:add("deps", "boost", {configs = {asio = true, filesystem = true, serialization = true, date_time = true, iostreams = true, system = true, thread = true, graph = true}})
  23. end
  24. if package:config("vtk") then
  25. package:add("deps", "vtk")
  26. end
  27. if package:config("cuda") then
  28. package:add("deps", "cuda", {system = true})
  29. end
  30. end)
  31. on_install("windows", "linux", "macosx", function (package)
  32. 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})
  33. io.replace("cmake/Modules/FindFLANN.cmake", "flann_cpp", "flann")
  34. if package:version():le("1.12.0") then
  35. io.replace("cmake/pcl_options.cmake", "set(CMAKE_FIND_LIBRARY_SUFFIXES", "#set(CMAKE_FIND_LIBRARY_SUFFIXES", {plain = true})
  36. end
  37. 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"}
  38. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
  39. table.insert(configs, "-DPCL_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  40. table.insert(configs, "-DWITH_VTK=" .. (package:config("vtk") and "ON" or "OFF"))
  41. table.insert(configs, "-DWITH_CUDA=" .. (package:config("cuda") and "ON" or "OFF"))
  42. if package:is_plat("windows") then
  43. table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  44. end
  45. import("package.tools.cmake").install(package, configs, {packagedeps = {"lz4", "dl"}})
  46. package:addenv("PATH", "bin")
  47. end)
  48. on_test(function (package)
  49. assert(package:check_cxxsnippets({test = [[
  50. void test() {
  51. using PointT = pcl::PointXYZI;
  52. pcl::PointCloud<PointT>::Ptr cloud (new pcl::PointCloud<PointT>);
  53. }
  54. ]]}, {configs = {languages = "c++14"}, includes = {"pcl/point_cloud.h", "pcl/point_types.h"}}))
  55. end)