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)