add open3d (#1065)
* add open3d * use stdc++fs in favor of c++experimental * add filament 1.9 * improve open3dpull/1089/head
parent
fa823b4d29
commit
c8b5b4560a
2 changed files with 107 additions and 0 deletions
@ -0,0 +1,104 @@ |
||||
package("open3d") |
||||
|
||||
set_homepage("http://www.open3d.org/") |
||||
set_description("Open3D: A Modern Library for 3D Data Processing") |
||||
set_license("MIT") |
||||
|
||||
add_urls("https://github.com/isl-org/Open3D/archive/refs/tags/$(version).tar.gz", |
||||
"https://github.com/isl-org/Open3D.git") |
||||
add_versions("v0.15.1", "4bcfbaa6fcbcc14fba46a4d719b9256fffac09b23f8344a7d561b26394159660") |
||||
|
||||
add_configs("python", {description = "Build the python module.", default = false, type = "boolean"}) |
||||
add_configs("cuda", {description = "Enable CUDA support.", default = false, type = "boolean"}) |
||||
add_configs("blas", {description = "Choose BLAS vendor.", default = "mkl", type = "string", values = {"mkl", "openblas"}}) |
||||
|
||||
add_deps("cmake", "nasm") |
||||
add_includedirs("include", "include/open3d/3rdparty") |
||||
if is_plat("linux") then |
||||
add_deps("libx11", "libxrandr", "libxrender", "libxinerama", "libxcursor", "libxfixes", "libxext", "libxi") |
||||
end |
||||
on_load("windows|x64", "linux|x86_64", "macosx|x86_64", function (package) |
||||
if package:config("cuda") then |
||||
package:add("deps", "cuda") |
||||
end |
||||
if package:config("python") then |
||||
package:add("deps", "python 3.x") |
||||
else |
||||
package:add("deps", "python 3.x", {kind = "binary"}) |
||||
end |
||||
if package:config("blas") ~= "mkl" then |
||||
package:add("deps", package:config("blas")) |
||||
end |
||||
end) |
||||
|
||||
on_install("windows|x64", "linux|x86_64", "macosx|x86_64", function (package) |
||||
if package:is_plat("linux") then |
||||
if package:has_tool("cxx", "clang", "clangxx") then |
||||
package:add("syslinks", "stdc++fs") |
||||
package:add("ldflags", "-fsanitize=safe-stack") |
||||
else |
||||
raise("GCC compiler is not supported yet, please use LLVM and Clang instead.") |
||||
end |
||||
end |
||||
io.replace("CMakeLists.txt", "add_subdirectory(docs)", "", {plain = true}) |
||||
io.replace("CMakeLists.txt", "add_subdirectory(examples)", "", {plain = true}) |
||||
io.writefile("examples/test_data/download_file_list.json", "{}") |
||||
if package:is_plat("windows") then |
||||
local vs = import("core.tool.toolchain").load("msvc"):config("vs") |
||||
local vstool |
||||
if vs == "2015" then vstool = "vc140" |
||||
elseif vs == "2017" then vstool = "vc141" |
||||
elseif vs == "2019" then vstool = "vc142" |
||||
elseif vs == "2022" then vstool = "vc143" |
||||
end |
||||
assert(vstool, "unknown vs version: %s", vs) |
||||
io.replace("3rdparty/assimp/assimp.cmake", "lib_name assimp%-vc.-%-mt", format("lib_name assimp-%s-mt", vstool)) |
||||
end |
||||
local configs = {"-DCMAKE_INSTALL_LIBDIR=lib", |
||||
"-DCMAKE_FIND_FRAMEWORK=LAST", |
||||
"-DBUILD_EXAMPLES=OFF", |
||||
"-DBUILD_UNIT_TESTS=OFF", |
||||
"-DBUILD_BENCHMARKS=OFF", |
||||
"-DBUILD_ISPC_MODULE=OFF", |
||||
"-DBUILD_WEBRTC=OFF", |
||||
"-DUSE_SYSTEM_BLAS=ON", |
||||
"-DBUILD_FILAMENT_FROM_SOURCE=OFF", |
||||
"-DWITH_IPPICV=OFF", |
||||
"-DPREFER_OSX_HOMEBREW=OFF", |
||||
"-DDEVELOPER_BUILD=OFF"} |
||||
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
||||
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
||||
table.insert(configs, "-DBUILD_PYTHON_MODULE=" .. (package:config("python") and "ON" or "OFF")) |
||||
table.insert(configs, "-DBUILD_CUDA_MODULE=" .. (package:config("cuda") and "ON" or "OFF")) |
||||
if package:is_plat("windows") then |
||||
table.insert(configs, "-DSTATIC_WINDOWS_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF")) |
||||
end |
||||
table.insert(configs, "-DUSE_BLAS=" .. (package:config("blas") == "openblas" and "ON" or "OFF")) |
||||
if package:is_plat("windows") then |
||||
import("package.tools.cmake").install(package, configs, {buildir = os.tmpfile() .. ".dir"}) |
||||
elseif package:is_plat("linux") then |
||||
import("package.tools.cmake").install(package, configs, {packagedeps = {"libxrandr", "libxrender", "libxinerama", "libxcursor", "libxfixes", "libxext", "libxi", "libx11"}}) |
||||
else |
||||
import("package.tools.cmake").install(package, configs) |
||||
end |
||||
if not package:is_plat("windows") then |
||||
package:add("links", "Open3D") |
||||
for _, f in ipairs(os.files(path.join(package:installdir("lib"), "lib*.a"))) do |
||||
if f:match(".+Open3D_3rdparty_.+%.a") then |
||||
package:add("links", path.basename(f):match("lib(.+)")) |
||||
end |
||||
end |
||||
end |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:check_cxxsnippets({test = [[ |
||||
#include <vector> |
||||
#include <string> |
||||
void test() { |
||||
using namespace open3d::utility::filesystem; |
||||
std::vector<std::string> filenames; |
||||
ListFilesInDirectory(".", filenames); |
||||
} |
||||
]]}, {configs = {languages = "c++14"}, includes = "open3d/Open3D.h"})) |
||||
end) |
Loading…
Reference in new issue