2017-11-12 01:28:30 +01:00
|
|
|
|
2017-12-31 00:34:02 +01:00
|
|
|
version_deps += custom_target('version information',
|
|
|
|
command : [preprocess_command, '@INPUT@', '@OUTPUT@'],
|
|
|
|
build_always : true,
|
|
|
|
input : 'version_auto.c.in',
|
|
|
|
output : 'version_auto.c',
|
|
|
|
)
|
2017-11-12 01:28:30 +01:00
|
|
|
|
|
|
|
if host_machine.system() == 'windows'
|
|
|
|
winmod = import('windows')
|
2017-12-20 13:33:20 +01:00
|
|
|
|
2018-01-12 23:05:46 +01:00
|
|
|
# NOTE: this code requires https://github.com/mesonbuild/meson/pull/2815
|
2017-12-20 13:33:20 +01:00
|
|
|
|
2017-11-12 01:28:30 +01:00
|
|
|
rcpath = join_paths(meson.current_build_dir(), 'taisei.rc')
|
2017-12-20 13:33:20 +01:00
|
|
|
rcdefs = [
|
|
|
|
'-DICONS_DIR=@0@'.format(join_paths(meson.source_root(), 'misc', 'icons'))
|
|
|
|
]
|
|
|
|
|
|
|
|
if get_option('buildtype').startswith('debug')
|
|
|
|
rcdefs += ['-DBUILDTYPE_DEFINE=#define DEBUG_BUILD']
|
|
|
|
else
|
|
|
|
rcdefs += ['-DBUILDTYPE_DEFINE=#define RELEASE_BUILD']
|
|
|
|
endif
|
|
|
|
|
|
|
|
rc_target = custom_target('Windows resource file',
|
|
|
|
command : [preprocess_command, rcdefs, '@INPUT@', '@OUTPUT@'],
|
|
|
|
build_always : true,
|
|
|
|
input : 'taisei.rc.in',
|
|
|
|
output : 'taisei.rc',
|
|
|
|
)
|
|
|
|
|
2018-01-12 23:05:46 +01:00
|
|
|
version_deps += winmod.compile_resources(rc_target)
|
2017-12-21 23:38:32 +01:00
|
|
|
|
|
|
|
# msvcrt is dumb and only supports up to c89.
|
|
|
|
# with this defined, alternative implementations from mingw for e.g. the
|
|
|
|
# printf family of functions will be used, which conform to c11.
|
|
|
|
config.set('__USE_MINGW_ANSI_STDIO', 1)
|
2017-11-12 01:28:30 +01:00
|
|
|
endif
|
|
|
|
|
2017-11-25 20:45:11 +01:00
|
|
|
use_intel_intrin = get_option('intel_intrin') and cc.links('''
|
|
|
|
#include <immintrin.h>
|
|
|
|
__attribute__((target("sse4.2")))
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
return _mm_crc32_u8(argc, 42);
|
|
|
|
}
|
2017-11-27 14:27:32 +01:00
|
|
|
''', name : 'SSE 4.2 intrinsics test')
|
2017-11-25 20:45:11 +01:00
|
|
|
|
|
|
|
if use_intel_intrin
|
|
|
|
# All that just to append that -msse4.2 argument for this one file.
|
|
|
|
sse42_lib = static_library('taisei_sse42', 'util_sse42.c', c_args: taisei_c_args + ['-msse4.2'], install : false)
|
|
|
|
sse42_dep = declare_dependency(link_with: sse42_lib)
|
|
|
|
taisei_deps += sse42_dep
|
2018-04-12 16:08:48 +02:00
|
|
|
config.set('TAISEI_BUILDCONF_USE_SSE42', true)
|
2017-12-24 16:55:03 +01:00
|
|
|
message('SSE 4.2 intrinsics will be used')
|
2017-11-25 20:45:11 +01:00
|
|
|
elif get_option('intel_intrin')
|
2018-04-12 16:08:48 +02:00
|
|
|
config.set('TAISEI_BUILDCONF_USE_SSE42', false)
|
2017-12-24 16:55:03 +01:00
|
|
|
message('SSE 4.2 intrinsics can not be used')
|
2017-11-25 20:45:11 +01:00
|
|
|
endif
|
|
|
|
|
2018-04-12 16:08:48 +02:00
|
|
|
taisei_src = files(
|
2017-11-25 20:45:11 +01:00
|
|
|
'aniplayer.c',
|
2018-02-07 09:19:21 +01:00
|
|
|
'assert.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'audio_common.c',
|
|
|
|
'boss.c',
|
2017-11-12 01:28:30 +01:00
|
|
|
'cli.c',
|
|
|
|
'color.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'color.c',
|
|
|
|
'config.c',
|
|
|
|
'credits.c',
|
|
|
|
'dialog.c',
|
|
|
|
'difficulty.c',
|
|
|
|
'ending.c',
|
|
|
|
'enemy.c',
|
|
|
|
'events.c',
|
|
|
|
'fbo.c',
|
2018-01-20 15:15:15 +01:00
|
|
|
'framerate.c',
|
2017-11-12 01:28:30 +01:00
|
|
|
'gamepad.c',
|
|
|
|
'global.c',
|
|
|
|
'hashtable.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'hirestime.c',
|
|
|
|
'item.c',
|
2017-11-12 01:28:30 +01:00
|
|
|
'laser.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'list.c',
|
|
|
|
'log.c',
|
|
|
|
'main.c',
|
2017-12-18 21:25:06 +01:00
|
|
|
'objectpool.c',
|
|
|
|
'objectpool_util.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'player.c',
|
|
|
|
'plrmodes.c',
|
|
|
|
'progress.c',
|
|
|
|
'projectile.c',
|
|
|
|
'random.c',
|
|
|
|
'refs.c',
|
|
|
|
'replay.c',
|
|
|
|
'stage.c',
|
|
|
|
'stagedraw.c',
|
2017-12-18 21:25:06 +01:00
|
|
|
'stageobjects.c',
|
2017-11-25 20:45:11 +01:00
|
|
|
'stagetext.c',
|
|
|
|
'stageutils.c',
|
|
|
|
'transition.c',
|
|
|
|
'util.c',
|
|
|
|
'version.c',
|
|
|
|
'video.c',
|
2018-04-12 16:08:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
subdir('menu')
|
|
|
|
subdir('plrmodes')
|
|
|
|
subdir('renderer')
|
|
|
|
subdir('resource')
|
|
|
|
subdir('rwops')
|
|
|
|
subdir('stages')
|
|
|
|
subdir('vfs')
|
|
|
|
|
|
|
|
configure_file(configuration : config, output : 'build_config.h')
|
|
|
|
|
|
|
|
taisei_src += [
|
|
|
|
menu_src,
|
|
|
|
plrmodes_src,
|
|
|
|
renderer_src,
|
|
|
|
resource_src,
|
|
|
|
rwops_src,
|
|
|
|
stages_src,
|
|
|
|
vfs_src,
|
2017-11-12 01:28:30 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
if taisei_deps.contains(dep_sdl2_mixer)
|
2018-04-12 16:08:48 +02:00
|
|
|
taisei_src += files(
|
2017-11-12 01:28:30 +01:00
|
|
|
'audio_mixer.c',
|
2018-04-12 16:08:48 +02:00
|
|
|
)
|
2017-11-12 01:28:30 +01:00
|
|
|
else
|
2018-04-12 16:08:48 +02:00
|
|
|
taisei_src += files(
|
2017-11-12 01:28:30 +01:00
|
|
|
'audio_null.c',
|
2018-04-12 16:08:48 +02:00
|
|
|
)
|
2017-11-12 01:28:30 +01:00
|
|
|
endif
|
|
|
|
|
2017-11-27 14:27:32 +01:00
|
|
|
if macos_app_bundle
|
|
|
|
taisei_exe_name = 'Taisei'
|
|
|
|
else
|
|
|
|
taisei_exe_name = 'taisei'
|
|
|
|
endif
|
|
|
|
|
2018-04-12 16:08:48 +02:00
|
|
|
taisei_exe = executable(taisei_exe_name, taisei_src, version_deps,
|
2017-11-27 14:27:32 +01:00
|
|
|
dependencies : taisei_deps,
|
|
|
|
c_args : taisei_c_args,
|
|
|
|
gui_app : not get_option('win_console'),
|
|
|
|
install : true,
|
|
|
|
install_dir : bindir,
|
|
|
|
)
|