Configuring CMake to build assets into output folder

This commit is contained in:
2019-11-30 18:28:42 -08:00
parent 20121e7eaa
commit 9063cf8915
5 changed files with 19 additions and 3 deletions

View File

@@ -17,3 +17,7 @@ target_include_directories(kraken_convert PRIVATE ${CMAKE_SOURCE_DIR}/hydra/incl
TARGET_LINK_LIBRARIES( kraken_convert kraken ${EXTRA_LIBS} )
set_target_properties( kraken_convert PROPERTIES
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/output/bin
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/output/bin
)