Skip to content

Commit

Permalink
meson: fix symbol exporting on simultaneous static and shared building
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed May 7, 2024
1 parent 8527639 commit acb018b
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 @@ -7,7 +7,7 @@ project('cwalk', 'c',
cwalk_inc = include_directories('include')

cwalk_c_args = []
if get_option('default_library') == 'shared'
if get_option('default_library') != 'static'
cwalk_c_args += '-DCWK_SHARED'
endif

Expand Down

0 comments on commit acb018b

Please sign in to comment.