summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-12-03 23:46:53 -0500
committerGravatar bunnei2014-12-03 23:46:53 -0500
commit9889a775b4e9fc69c35a799ac23ff423ad90f436 (patch)
tree0d8c772f4812ca05da7cefacf6ddb192c443fc1b
parentMerge pull request #238 from archshift/dsp (diff)
parentCMake: Place all the built files in BUILD_DIR/bin/<Configuration> when compil... (diff)
downloadyuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.gz
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.tar.xz
yuzu-9889a775b4e9fc69c35a799ac23ff423ad90f436.zip
Merge pull request #240 from Subv/cmake
CMake: Place all built files in a single folder in 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