Add oxfstool install instructions for cmake

This commit is contained in:
2016-07-09 11:10:13 -05:00
parent 5bdca72004
commit c4890407a2
+5
View File
@@ -9,6 +9,7 @@ add_executable(
oxfstool oxfstool
oxfstool.cpp oxfstool.cpp
) )
set_target_properties(oxfstool PROPERTIES OUTPUT_NAME oxfs)
target_link_libraries(oxfstool OxFS OxStd) target_link_libraries(oxfstool OxFS OxStd)
install( install(
@@ -20,4 +21,8 @@ install(
include/ox/fs include/ox/fs
) )
install(TARGETS oxfstool
RUNTIME DESTINATION bin
)
add_subdirectory(test) add_subdirectory(test)