Skip to content

Commit bf2c40e

Browse files
committed
added skel CMakeLists.txt file
1 parent 774ed82 commit bf2c40e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CMakeLists.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#
2+
# Skeleton CMake project file for libtess2
3+
#
4+
cmake_minimum_required(VERSION 2.8)
5+
6+
project (libtess2)
7+
8+
9+
set(LIBTESS2_SOURCES
10+
src/bucketalloc.c
11+
src/dict.c
12+
src/geom.c
13+
src/mesh.c
14+
src/priorityq.c
15+
src/sweep.c
16+
src/tess.c
17+
)
18+
19+
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/src)
20+
ADD_LIBRARY(tess2 ${LIBTESS2_SOURCES})

0 commit comments

Comments
 (0)