summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-04 05:46:53 +0100
committerbunnei <bunneidev@gmail.com>2014-12-04 05:46:53 +0100
commit9889a775b4e9fc69c35a799ac23ff423ad90f436 (patch)
tree0d8c772f4812ca05da7cefacf6ddb192c443fc1b
parentMerge pull request #238 from archshift/dsp (diff)
parentCMake: Place all the built files in BUILD_DIR/bin/<Configuration> when compiling with MSVC (diff)
downloadyuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.gz
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.bz2
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.lz
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.xz
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.zst
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.zip
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bbe9f76cd..05a560404 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,6 +9,8 @@ if (NOT MSVC)
else()
# Silence deprecation warnings
add_definitions(/D_CRT_SECURE_NO_WARNINGS)
+ # set up output paths for executable binaries (.exe-files, and .dll-files on DLL-capable platforms)
+ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
endif()
add_definitions(-DSINGLETHREADED)