raze/libraries/libtess/CMakeLists.txt
2021-12-30 09:53:07 +01:00

19 lines
306 B
CMake

cmake_minimum_required( VERSION 3.1.0 )
make_release_only()
set( TESS_FILES
Source/bucketalloc.c
Source/dict.c
Source/geom.c
Source/mesh.c
Source/priorityq.c
Source/sweep.c
Source/tess.c
)
include_directories( Include )
add_library( tess2 STATIC ${TESS_FILES} )
target_link_libraries( tess2 )