mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-31 10:22:01 +08:00
15 lines
238 B
CMake
15 lines
238 B
CMake
project(admesh)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
add_library(admesh STATIC
|
|
connect.cpp
|
|
normals.cpp
|
|
shared.cpp
|
|
stl.h
|
|
stl_io.cpp
|
|
stlinit.cpp
|
|
util.cpp
|
|
)
|
|
|
|
target_link_libraries(admesh PRIVATE boost_headeronly)
|