Skip to content

Commit 4997680

Browse files
committed
build: drop windows guard on no-json
Remove the windows guard for no-json after the header file cleanup. Signed-off-by: Daniel Wagner <[email protected]>
1 parent 9d12fd5 commit 4997680

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

libnvme/src/meson.build

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,10 @@ else
7777
sources += 'nvme/no-uring.c'
7878
endif
7979

80-
if host_system != 'windows'
81-
if json_c_dep.found()
82-
sources += 'nvme/json.c'
83-
else
84-
sources += 'nvme/no-json.c'
85-
endif
80+
if json_c_dep.found()
81+
sources += 'nvme/json.c'
82+
else
83+
sources += 'nvme/no-json.c'
8684
endif
8785

8886
deps = [

0 commit comments

Comments
 (0)