mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 01:59:52 -06:00
DolphinQt: initial commit.
This adds the beginning of the DolphinQt user interface. It doesn't do anything useful yet and only builds via CMake.
This commit is contained in:

committed by
Shawn Hoffman

parent
847f78e4cc
commit
16c6a19190
21
Source/Core/DolphinQt/CMakeLists.txt
Normal file
21
Source/Core/DolphinQt/CMakeLists.txt
Normal file
@ -0,0 +1,21 @@
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR}) # because of generated UI files
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
set(SRCS AboutDialog.cpp
|
||||
AboutDialog.h
|
||||
Main.cpp
|
||||
MainWindow.cpp
|
||||
MainWindow.h)
|
||||
|
||||
set(UIS AboutDialog.ui
|
||||
MainWindow.ui)
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
set(DOLPHINQT_BINARY DolphinQt)
|
||||
else()
|
||||
set(DOLPHINQT_BINARY dolphin-emu-qt)
|
||||
endif()
|
||||
|
||||
qt5_wrap_ui(UI_HEADERS ${UIS})
|
||||
add_executable(${DOLPHINQT_BINARY} ${SRCS} ${UI_HEADERS})
|
||||
qt5_use_modules(${DOLPHINQT_BINARY} Widgets)
|
Reference in New Issue
Block a user