mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-19 19:14:42 +00:00
63 lines
2.3 KiB
CMake
63 lines
2.3 KiB
CMake
# Copyright 2019, 2020, Collabora, Ltd.
|
|
# Copyright 2019, 2020, Visual Computing Lab, ISTI - Italian National Research Council
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
|
option(ALLOW_BUNDLED_LIB3DS "Allow use of bundled lib3ds source" ON)
|
|
option(ALLOW_SYSTEM_LIB3DS "Allow use of system-provided lib3ds" ON)
|
|
|
|
find_package(Lib3ds)
|
|
set(LIB3DS_DIR ${EXTERNAL_DIR}/lib3ds-1.3.0)
|
|
|
|
if(ALLOW_SYSTEM_LIB3DS AND TARGET Lib3ds::Lib3ds)
|
|
message(STATUS "- lib3ds - using system-provided library")
|
|
add_library(external-lib3ds INTERFACE)
|
|
target_link_libraries(external-lib3ds INTERFACE Lib3ds::Lib3ds)
|
|
elseif(ALLOW_BUNDLED_LIB3DS AND EXISTS "${LIB3DS_DIR}/lib3ds/types.h")
|
|
message(STATUS "- lib3ds - using bundled source")
|
|
add_library(
|
|
external-lib3ds STATIC
|
|
"${LIB3DS_DIR}/lib3ds/atmosphere.c"
|
|
"${LIB3DS_DIR}/lib3ds/atmosphere.h"
|
|
"${LIB3DS_DIR}/lib3ds/background.c"
|
|
"${LIB3DS_DIR}/lib3ds/background.h"
|
|
"${LIB3DS_DIR}/lib3ds/camera.c"
|
|
"${LIB3DS_DIR}/lib3ds/camera.h"
|
|
"${LIB3DS_DIR}/lib3ds/chunk.c"
|
|
"${LIB3DS_DIR}/lib3ds/chunk.h"
|
|
"${LIB3DS_DIR}/lib3ds/chunktable.h"
|
|
"${LIB3DS_DIR}/lib3ds/ease.c"
|
|
"${LIB3DS_DIR}/lib3ds/ease.h"
|
|
"${LIB3DS_DIR}/lib3ds/file.c"
|
|
"${LIB3DS_DIR}/lib3ds/file.h"
|
|
"${LIB3DS_DIR}/lib3ds/io.c"
|
|
"${LIB3DS_DIR}/lib3ds/io.h"
|
|
"${LIB3DS_DIR}/lib3ds/light.c"
|
|
"${LIB3DS_DIR}/lib3ds/light.h"
|
|
"${LIB3DS_DIR}/lib3ds/material.c"
|
|
"${LIB3DS_DIR}/lib3ds/material.h"
|
|
"${LIB3DS_DIR}/lib3ds/matrix.c"
|
|
"${LIB3DS_DIR}/lib3ds/matrix.h"
|
|
"${LIB3DS_DIR}/lib3ds/mesh.c"
|
|
"${LIB3DS_DIR}/lib3ds/mesh.h"
|
|
"${LIB3DS_DIR}/lib3ds/node.c"
|
|
"${LIB3DS_DIR}/lib3ds/node.h"
|
|
"${LIB3DS_DIR}/lib3ds/quat.c"
|
|
"${LIB3DS_DIR}/lib3ds/quat.h"
|
|
"${LIB3DS_DIR}/lib3ds/shadow.c"
|
|
"${LIB3DS_DIR}/lib3ds/shadow.h"
|
|
"${LIB3DS_DIR}/lib3ds/tcb.c"
|
|
"${LIB3DS_DIR}/lib3ds/tcb.h"
|
|
"${LIB3DS_DIR}/lib3ds/tracks.c"
|
|
"${LIB3DS_DIR}/lib3ds/tracks.h"
|
|
"${LIB3DS_DIR}/lib3ds/types.h"
|
|
"${LIB3DS_DIR}/lib3ds/vector.c"
|
|
"${LIB3DS_DIR}/lib3ds/vector.h"
|
|
"${LIB3DS_DIR}/lib3ds/viewport.c"
|
|
"${LIB3DS_DIR}/lib3ds/viewport.h")
|
|
target_include_directories(external-lib3ds SYSTEM PUBLIC "${LIB3DS_DIR}")
|
|
target_compile_definitions(external-lib3ds PUBLIC LIB3DS_STATIC)
|
|
set_property(TARGET external-lib3ds PROPERTY FOLDER External)
|
|
target_link_libraries(external-lib3ds PRIVATE external-disable-warnings)
|
|
endif()
|