From 02bbd75606b985069d514a617dbd07b3ecfacc0c Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 17 Dec 2016 22:31:01 -0600 Subject: [PATCH] Remove executable linking from exec building off --- src/ox/fs/CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ox/fs/CMakeLists.txt b/src/ox/fs/CMakeLists.txt index 3633bdfcf..9c1b20913 100644 --- a/src/ox/fs/CMakeLists.txt +++ b/src/ox/fs/CMakeLists.txt @@ -10,11 +10,10 @@ if(OX_BUILD_EXEC STREQUAL "ON") oxfstool oxfstool.cpp ) + set_target_properties(oxfstool PROPERTIES OUTPUT_NAME oxfs) + target_link_libraries(oxfstool OxFS OxStd) endif() -set_target_properties(oxfstool PROPERTIES OUTPUT_NAME oxfs) -target_link_libraries(oxfstool OxFS OxStd) - install( FILES filestore.hpp