From c4890407a2cfa06a39d55219178555a23f79c905 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Jul 2016 11:10:13 -0500 Subject: [PATCH] Add oxfstool install instructions for cmake --- src/ox/fs/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ox/fs/CMakeLists.txt b/src/ox/fs/CMakeLists.txt index 86b46f99c..d4233a7bb 100644 --- a/src/ox/fs/CMakeLists.txt +++ b/src/ox/fs/CMakeLists.txt @@ -9,6 +9,7 @@ add_executable( oxfstool oxfstool.cpp ) +set_target_properties(oxfstool PROPERTIES OUTPUT_NAME oxfs) target_link_libraries(oxfstool OxFS OxStd) install( @@ -20,4 +21,8 @@ install( include/ox/fs ) +install(TARGETS oxfstool + RUNTIME DESTINATION bin +) + add_subdirectory(test)