Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « admesh « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d0177782fff14d7242f1fb468b4b4d1c56bef61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)