You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
419 B
CMake
24 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} )
|