Skip to content

Commit

Permalink
build: also don't build "cio_utils.c" if CIO_BACKEND_FILESYSTEM=Off
Browse files Browse the repository at this point in the history
This module contains a couple of functions for manipulating the file
system. We don't need them except the platform does support the file
system backend.

Signed-off-by: Fujimoto Seiji <[email protected]>
  • Loading branch information
Fujimoto Seiji committed Dec 27, 2018
1 parent 344e18b commit 74ed9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set(src
cio_chunk.c
cio_meta.c
cio_scan.c
cio_utils.c
cio_stream.c
chunkio.c
)
Expand All @@ -14,6 +13,7 @@ if(CIO_BACKEND_FILESYSTEM)
set(src
${src}
cio_file.c
cio_utils.c
)
endif()

Expand Down

0 comments on commit 74ed9d2

Please sign in to comment.