Added CMakeList.txt
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
fc52516467
commit
a13348d291
1 changed files with 24 additions and 0 deletions
24
CMakeLists.txt
Normal file
24
CMakeLists.txt
Normal file
|
@ -0,0 +1,24 @@
|
|||
project(tess2)
|
||||
|
||||
include_directories(Include)
|
||||
|
||||
set(
|
||||
SRC
|
||||
Include/tesselator.h
|
||||
Source/bucketalloc.c
|
||||
Source/bucketalloc.h
|
||||
Source/dict.c
|
||||
Source/dict.h
|
||||
Source/geom.c
|
||||
Source/geom.h
|
||||
Source/mesh.c
|
||||
Source/mesh.h
|
||||
Source/priorityq.c
|
||||
Source/priorityq.h
|
||||
Source/sweep.c
|
||||
Source/sweep.h
|
||||
Source/tess.c
|
||||
Source/tess.h
|
||||
)
|
||||
|
||||
add_library(${PROJECT_NAME} ${SRC})
|
Loading…
Add table
Reference in a new issue