mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
1b259e2d33
Created Package system
23 lines
419 B
CMake
23 lines
419 B
CMake
include_directories(./linux)
|
|
|
|
add_definitions(-DPAWN_CELL_SIZE=64)
|
|
|
|
set(source_amx
|
|
amxexec_gcc.c
|
|
amxfile.c
|
|
fpattern.c
|
|
minIni.c
|
|
amxcons.c
|
|
amxcore.c
|
|
amxstring.c
|
|
amxtime.c
|
|
amxfloat.c
|
|
amxaux.c
|
|
amx.c
|
|
linux/binreloc.c
|
|
linux/getch.c
|
|
)
|
|
|
|
source_group(amx FILES ${source_amx})
|
|
|
|
add_library(amx STATIC ${source_amx} )
|