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.
70 lines
2.8 KiB
Meson
70 lines
2.8 KiB
Meson
4 years ago
|
project('vmread', 'cpp', 'c', version : '1.3', default_options : ['c_std=c99', 'cpp_std=c++14'])
|
||
|
|
||
|
compile_args = ['-D_POSIX_C_SOURCE=200809L', '-D_DEFAULT_SOURCE', '-pedantic', '-DMVERBOSE=4', '-DMTR_ENABLED', '-DREAD_CHECK']
|
||
|
compile_args_external = ['-DLMODE=MODE_EXTERNAL', '-fsanitize=address']
|
||
|
compile_args_internal = ['-DLMODE=MODE_QEMU_INJECT', '-DMVERBOSE=4']
|
||
|
link_args_external = ['-lasan']
|
||
|
link_args_internal = []
|
||
|
link_args = ['-pthread','-lX11']
|
||
|
cpp_compile_args = []
|
||
|
c_compile_args = []
|
||
|
|
||
|
try_args = ['-Weverything', '-Wno-padded', '-Wno-sign-conversion', '-Wno-padded', '-Wno-documentation-unknown-command', '-Wno-missing-variable-declarations', '-Wno-c++98-compat', '-Wno-c++98-compat-pedantic', '-Wno-weak-vtables','-lX11','-pthread']
|
||
|
try_args_c = ['-Wno-missing-prototypes']
|
||
|
try_args_cpp = ['-Wno-padded', '-Wno-c++98-compat', '-Wno-padded', '-Wno-c++98-compat-pedantic', '-Wno-weak-vtables', '-Wno-documentation-unknown-command', '-Wno-old-style-cast']
|
||
|
|
||
|
cxx = meson.get_compiler('cpp')
|
||
|
cc = meson.get_compiler('c')
|
||
|
|
||
|
foreach arg : try_args
|
||
|
if cc.has_argument(arg)
|
||
|
c_compile_args += arg
|
||
|
endif
|
||
|
if cxx.has_argument(arg)
|
||
|
cpp_compile_args += arg
|
||
|
endif
|
||
|
endforeach
|
||
|
|
||
|
foreach arg : try_args_cpp
|
||
|
if cxx.has_argument(arg)
|
||
|
cpp_compile_args += arg
|
||
|
endif
|
||
|
endforeach
|
||
|
|
||
|
foreach arg : try_args_c
|
||
|
if cc.has_argument(arg)
|
||
|
c_compile_args += arg
|
||
|
endif
|
||
|
endforeach
|
||
|
|
||
|
dl = meson.get_compiler('c').find_library('dl', required : false)
|
||
|
thread = meson.get_compiler('c').find_library('pthread', required : false)
|
||
|
|
||
|
base_files = ['mem.c', 'wintools.c', 'pmparser.c']
|
||
|
hlapi_files = ['hlapi/windll.cpp', 'hlapi/winprocess.cpp', 'hlapi/winprocesslist.cpp']
|
||
|
|
||
|
apex_dma = executable(
|
||
|
'apex_dma',
|
||
|
files(base_files + ['../apex_dma/apex_dma.cpp', '../apex_dma/Game.cpp', '../apex_dma/Math.cpp', 'vmmem.c'] + hlapi_files),
|
||
|
c_args : c_compile_args + compile_args + compile_args_external,
|
||
|
cpp_args : cpp_compile_args + compile_args + compile_args_external,
|
||
|
link_args : compile_args + compile_args_external + link_args + link_args_external
|
||
|
)
|
||
|
|
||
|
apex_dma_kmod = executable(
|
||
|
'kmod_apex_dma',
|
||
|
files(base_files + ['../apex_dma/apex_dma.cpp', '../apex_dma/Game.cpp', '../apex_dma/Math.cpp', 'intmem.c'] + hlapi_files),
|
||
|
c_args : c_compile_args + compile_args + compile_args_external + ['-DKMOD_MEMMAP'],
|
||
|
cpp_args : cpp_compile_args + compile_args + compile_args_external + ['-DKMOD_MEMMAP'],
|
||
|
link_args : compile_args + compile_args_external + link_args + link_args_external
|
||
|
)
|
||
|
|
||
|
apex_dma_lib = shared_library(
|
||
|
'apex_dma',
|
||
|
files(base_files + ['../apex_dma/apex_dma.cpp', '../apex_dma/Game.cpp', '../apex_dma/Math.cpp', 'intmem.c'] + hlapi_files),
|
||
|
c_args : compile_args + compile_args_internal,
|
||
|
cpp_args : compile_args + compile_args_internal,
|
||
|
link_args : compile_args + compile_args_internal + link_args + link_args_internal,
|
||
|
dependencies: [dl]
|
||
|
)
|