add avisynth

This commit is contained in:
odrling 2020-11-19 22:21:58 +01:00
parent 4688813b2a
commit 9f37dc4cd4
2 changed files with 11 additions and 0 deletions

View File

@ -81,6 +81,8 @@ typedef long PixOffset;
#define _RPT4(a,b,c,d,e,f) ((void)0)
#define _ASSERTE(x) assert(x)
// not sure why it's used but not defined, so...
#define _ASSERT(x) assert(x)
#include <assert.h>
#endif

View File

@ -211,6 +211,15 @@ foreach opt: opt_src
endif
endforeach
# avisynth for windows build
if host_machine.system() == 'windows'
aegisub_src += [
'audio_provider_avs.cpp',
'video_provider_avs.cpp',
]
endif
aegisub_cpp_pch = ['include/agi_pre.h']
aegisub_c_pch = ['include/agi_pre_c.h']