mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 10:15:45 +00:00
Port citra-emu/citra#4214: "Set citra-qt project as default StartUp Project in Visual Studio"
This commit is contained in:
parent
4439437bc0
commit
8b53b7d381
1 changed files with 6 additions and 2 deletions
|
@ -440,8 +440,12 @@ enable_testing()
|
|||
add_subdirectory(externals)
|
||||
add_subdirectory(src)
|
||||
|
||||
# Set yuzu project as default StartUp Project in Visual Studio
|
||||
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu)
|
||||
# Set yuzu project or yuzu-cmd project as default StartUp Project in Visual Studio depending on whether QT is enabled or not
|
||||
if(ENABLE_QT)
|
||||
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu)
|
||||
else()
|
||||
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT yuzu-cmd)
|
||||
endif()
|
||||
|
||||
|
||||
# Installation instructions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue