A version of the Quake 2 source tree that should be easier to compile and run on modern *nixes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
268 B

cmake_minimum_required(VERSION 3.9)
project(quake2global)
add_compile_definitions(__i386__)
add_compile_definitions(C_ONLY)
add_subdirectory(src/quake2)
add_subdirectory(src/game_baseq2)
add_subdirectory(src/ref_soft)
add_dependencies(quake2 game_baseq2 ref_soft)