Skip to content

Commit

Permalink
Meson: Fix compilation error under non-Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
HolyWu committed Jan 12, 2019
1 parent c3120d5 commit 79e7f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project('NNEDI3CL', 'cpp',
version : '7'
)

add_project_arguments('-ffast-math', '-DNNEDI3_DATADIR=' + join_paths(get_option('prefix'), get_option('datadir'), meson.project_name()), language : 'cpp')
add_project_arguments('-ffast-math', '-DNNEDI3_DATADIR="@0@"'.format(join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())), language : 'cpp')

sources = [
'NNEDI3CL/NNEDI3CL.cpp'
Expand Down

0 comments on commit 79e7f3e

Please sign in to comment.