mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
4a87003408
* Vulkan backend updated. * zlib replaced with miniz. * FileReader is now 64 bit capable. * jpeg replaced with stb-image. * CMake project warnings fixed.
17 lines
265 B
CMake
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 )
|