mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
19 lines
306 B
CMake
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 )
|