dolphin/Source/Core/DolphinQt2/CMakeLists.txt

32 lines
730 B
CMake
Raw Normal View History

2015-11-27 09:33:07 +01:00
include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_definitions(-DQT_USE_QSTRINGBUILDER -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII)
set(CMAKE_AUTOMOC ON)
set(SRCS
2015-12-20 06:24:48 +01:00
Host.cpp
2015-11-27 09:33:07 +01:00
Main.cpp
MainWindow.cpp
2015-12-20 06:24:48 +01:00
MenuBar.cpp
2015-11-27 09:33:07 +01:00
RenderWidget.cpp
Resources.cpp
Settings.cpp
ToolBar.cpp
2015-12-31 04:03:13 +01:00
Config/PathDialog.cpp
2015-11-27 09:33:07 +01:00
GameList/GameFile.cpp
GameList/GameList.cpp
GameList/GameListModel.cpp
2015-12-20 06:24:48 +01:00
GameList/GameTracker.cpp
GameList/ListProxyModel.cpp
2015-12-20 06:24:48 +01:00
GameList/TableProxyModel.cpp
2015-11-27 09:33:07 +01:00
)
list(APPEND LIBS core uicommon)
set(DOLPHINQT2_BINARY dolphin-emu-qt2)
add_executable(${DOLPHINQT2_BINARY} ${SRCS} ${UI_HEADERS})
target_link_libraries(${DOLPHINQT2_BINARY} ${LIBS} Qt5::Widgets)
install(TARGETS ${DOLPHINQT2_BINARY} RUNTIME DESTINATION ${bindir})