mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 05:07:51 -06:00
14 lines
238 B
CMake
14 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)
|