Fixes to the About dialog & add the SystemInfo dialog.

Also fix the build on Mac OS X.
This commit is contained in:
Augustin Cavalier
2014-10-25 09:21:05 -04:00
parent 51700a2b68
commit 69cd8229d8
13 changed files with 296 additions and 67 deletions

View File

@ -7,21 +7,35 @@ set(CMAKE_AUTOMOC ON)
set(SRCS
AboutDialog.cpp
AboutDialog.h
Host.cpp
Main.cpp
MainWindow.cpp
MainWindow.h
Host.cpp
SystemInfo.cpp
Utils/Resources.cpp
Utils/Utils.cpp
VideoInterface/VideoInterface.cpp)
VideoInterface/VideoInterface.cpp
)
set(UIS
AboutDialog.ui
MainWindow.ui)
MainWindow.ui
SystemInfo.ui
)
set(LIBS core uicommon)
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
# Link against OS X system frameworks.
list(APPEND LIBS
${APPKIT_LIBRARY}
${AU_LIBRARY}
${COREAUDIO_LIBRARY}
${COREFUND_LIBRARY}
${CORESERV_LIBRARY}
${IOK_LIBRARY}
${FORCEFEEDBACK}
)
set(DOLPHINQT_BINARY DolphinQt)
else()
set(DOLPHINQT_BINARY dolphin-emu-qt)