summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Subv2014-12-01 18:48:27 -0500
committerGravatar Subv2014-12-01 18:48:27 -0500
commit8712c9dcd6df69866248328ab37c1e1b986d94bd (patch)
tree319f45d5fc8dc02d0513a74edaa9bfbfbcebbdc7
parentMerge pull request #237 from vaguilar/fix-viewport (diff)
downloadyuzu-8712c9dcd6df69866248328ab37c1e1b986d94bd.tar.gz
yuzu-8712c9dcd6df69866248328ab37c1e1b986d94bd.tar.xz
yuzu-8712c9dcd6df69866248328ab37c1e1b986d94bd.zip
CMake: Place all the built files in BUILD_DIR/bin/<Configuration> when compiling with MSVC
-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)
9else() 9else()
10 # Silence deprecation warnings 10 # Silence deprecation warnings
11 add_definitions(/D_CRT_SECURE_NO_WARNINGS) 11 add_definitions(/D_CRT_SECURE_NO_WARNINGS)
12 # set up output paths for executable binaries (.exe-files, and .dll-files on DLL-capable platforms)
13 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
12endif() 14endif()
13add_definitions(-DSINGLETHREADED) 15add_definitions(-DSINGLETHREADED)
14 16