From 7da4009df063078691e47e62e82baa0606cf7061 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 11 Oct 2017 16:43:03 -0500 Subject: [PATCH] Add toollib to fs CMakeLists.txt --- src/ox/fs/CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ox/fs/CMakeLists.txt b/src/ox/fs/CMakeLists.txt index 9c6fdd163..5c3332179 100644 --- a/src/ox/fs/CMakeLists.txt +++ b/src/ox/fs/CMakeLists.txt @@ -16,10 +16,16 @@ set_property( if(OX_BUILD_EXEC STREQUAL "ON") add_executable( oxfstool + toollib.cpp oxfstool.cpp ) set_target_properties(oxfstool PROPERTIES OUTPUT_NAME oxfs) - target_link_libraries(oxfstool OxFS OxStd) + target_link_libraries( + oxfstool + OxFS + OxLog + OxStd + ) endif() install(