mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
14 lines
241 B
CMake
14 lines
241 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
project(admesh)
|
|
|
|
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)
|