Skip to content

Commit

Permalink
fix set of ETL_NO_STL flag (#628)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergey Skorokhod <s.skorokhod@1440.space>
  • Loading branch information
skorokhod and Sergey Skorokhod authored Nov 7, 2022
1 parent 85d40b9 commit 71f694b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ project('etl',
)

compile_args = []
if get_option('use_stl')
compile_args += '-DETL_NO_STL=0'
elif
compile_args += '-DETL_NO_STL=1'
if not get_option('use_stl')
compile_args += '-DETL_NO_STL'
endif

etl_dep = declare_dependency(
Expand Down

0 comments on commit 71f694b

Please sign in to comment.