summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar fearlessTobi2018-09-22 12:24:02 +0200
committerGravatar fearlessTobi2018-09-22 12:24:02 +0200
commitf90b75cc4c842f1cbbb4ad1f284d5f30e8e24243 (patch)
tree479407ebc90d0fbf0d0ad5d3876115f7999634fb
parentMerge pull request #1380 from lioncash/const (diff)
downloadyuzu-f90b75cc4c842f1cbbb4ad1f284d5f30e8e24243.tar.gz
yuzu-f90b75cc4c842f1cbbb4ad1f284d5f30e8e24243.tar.xz
yuzu-f90b75cc4c842f1cbbb4ad1f284d5f30e8e24243.zip
Port citra-emu/citra#4214: "Set citra-qt project as default StartUp Project in Visual Studio"
-rw-r--r--CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 30642edd7..25c5cb112 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -440,8 +440,12 @@ enable_testing()
440add_subdirectory(externals) 440add_subdirectory(externals)
441add_subdirectory(src) 441add_subdirectory(src)
442 442
443# Set yuzu project as default StartUp Project in Visual Studio 443# Set yuzu project or yuzu-cmd project as default StartUp Project in Visual Studio depending on whether QT is enabled or not
444set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu) 444if(ENABLE_QT)
445 set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu)
446else()
447 set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu-cmd)
448endif()
445 449
446 450
447# Installation instructions 451# Installation instructions