diff options
author | Hiroo Ono <hiroo.ono@gmail.com> | 2024-09-01 01:33:17 +0900 |
---|---|---|
committer | Hiroo Ono <hiroo.ono@gmail.com> | 2024-09-01 01:33:17 +0900 |
commit | 08113620404175754e5154c90c743f3c9b1330b8 (patch) | |
tree | b2a8b1fee846a257a59a2ba1834249bfba97bdcc /indra/llprimitive | |
parent | 3bba39cf3e4d56da5aba883479539ed89fa578b9 (diff) |
Build private static collada-dom library for Linux and FreeBSD.
Clone the repository by git and make it a cmake submodule.
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/llprimitive/CMakeLists.txt b/indra/llprimitive/CMakeLists.txt index dea85f8f4f..985c15b99f 100644 --- a/indra/llprimitive/CMakeLists.txt +++ b/indra/llprimitive/CMakeLists.txt @@ -3,6 +3,7 @@ project(llprimitive) include(00-Common) +include(DepsBuild) include(LLCommon) include(LLCoreHttp) include(LLPhysicsExtensions) @@ -11,6 +12,21 @@ include(GLH) include(GLM) include(TinyGLTF) +if(LINUX OR CMAKE_SYSTEM_NAME MATCHES FreeBSD ) + checkout_deps_repository( + "https://github.com/oikumene/3p-colladadom-test.git" + "collada-dom" "v2.3-r7-megapahit" + ) + set(OPT_COLLADA14 TRUE) + add_subdirectory(${CMAKE_SOURCE_DIR}/../../collada-dom "collada-dom") + target_include_directories( + ll::colladadom INTERFACE + ${colladadom_SOURCE_DIR}/include + ${colladadom_SOURCE_DIR}/include/1.4 + ) + target_link_libraries( ll::colladadom INTERFACE collada14dom ) +endif(LINUX OR CMAKE_SYSTEM_NAME MATCHES FreeBSD ) + set(llprimitive_SOURCE_FILES lldaeloader.cpp llgltfloader.cpp |