raze/libraries/libtess/CMakeLists.txt
Christoph Oelckers 4a87003408 - backend update from GZDoom.
* Vulkan backend updated.
* zlib replaced with miniz.
* FileReader is now 64 bit capable.
* jpeg replaced with stb-image.
* CMake project warnings fixed.
2023-09-23 09:56:27 +02:00

17 lines
265 B
CMake

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 )