2014-09-15 00:44:07 +00:00
|
|
|
# because of generated UI files
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2014-09-14 19:03:07 +00:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
2014-09-15 00:44:07 +00:00
|
|
|
set(SRCS
|
|
|
|
AboutDialog.cpp
|
|
|
|
AboutDialog.h
|
|
|
|
Main.cpp
|
|
|
|
MainWindow.cpp
|
|
|
|
MainWindow.h)
|
|
|
|
|
|
|
|
set(UIS
|
|
|
|
AboutDialog.ui
|
|
|
|
MainWindow.ui)
|
2014-09-14 19:03:07 +00:00
|
|
|
|
2014-09-15 00:44:07 +00:00
|
|
|
set(LIBS common)
|
2014-09-14 19:03:07 +00:00
|
|
|
|
|
|
|
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})
|
2014-09-15 00:44:07 +00:00
|
|
|
target_link_libraries(${DOLPHINQT_BINARY} ${LIBS})
|
2014-09-14 19:03:07 +00:00
|
|
|
qt5_use_modules(${DOLPHINQT_BINARY} Widgets)
|