mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
17 lines
399 B
Meson
17 lines
399 B
Meson
libdwcgsserverbrowsing_srcs = files(
|
|
'asm/sb_crypt.s',
|
|
'asm/sb_queryengine.s',
|
|
'asm/sb_server.s',
|
|
'asm/sb_serverbrowsing.s',
|
|
'asm/sb_serverlist.s'
|
|
)
|
|
|
|
libdwcgsserverbrowsing = static_library('dwcgsserverbrowsing',
|
|
sources: libdwcgsserverbrowsing_srcs,
|
|
nasm_args: asm_args,
|
|
include_directories: public_includes,
|
|
pic: false
|
|
)
|
|
|
|
gamespy_libs += libdwcgsserverbrowsing
|