|
|
@ -14,7 +14,7 @@ set(SRCS
|
|
|
|
config/controller_config.cpp
|
|
|
|
config/controller_config.cpp
|
|
|
|
config/controller_config_util.cpp)
|
|
|
|
config/controller_config_util.cpp)
|
|
|
|
|
|
|
|
|
|
|
|
set (HEADERS
|
|
|
|
set(HEADERS
|
|
|
|
bootmanager.hxx
|
|
|
|
bootmanager.hxx
|
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/disassembler.hxx
|
|
|
|
debugger/disassembler.hxx
|
|
|
@ -26,7 +26,7 @@ set (HEADERS
|
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config_util.hxx)
|
|
|
|
config/controller_config_util.hxx)
|
|
|
|
|
|
|
|
|
|
|
|
qt4_wrap_ui(UI_HDRS
|
|
|
|
set(UIS
|
|
|
|
debugger/callstack.ui
|
|
|
|
debugger/callstack.ui
|
|
|
|
debugger/disassembler.ui
|
|
|
|
debugger/disassembler.ui
|
|
|
|
debugger/registers.ui
|
|
|
|
debugger/registers.ui
|
|
|
@ -34,16 +34,22 @@ qt4_wrap_ui(UI_HDRS
|
|
|
|
main.ui
|
|
|
|
main.ui
|
|
|
|
config/controller_config.ui)
|
|
|
|
config/controller_config.ui)
|
|
|
|
|
|
|
|
|
|
|
|
# add uic results to include directories
|
|
|
|
if(USE_QT5)
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
qt4_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
add_executable(citra-qt ${SRCS} ${UI_HDRS})
|
|
|
|
add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
|
|
|
|
if (APPLE)
|
|
|
|
if(APPLE)
|
|
|
|
set(ICONV_LIBRARY iconv)
|
|
|
|
set(ICONV_LIBRARY iconv)
|
|
|
|
else()
|
|
|
|
else()
|
|
|
|
set(RT_LIBRARY rt)
|
|
|
|
set(RT_LIBRARY rt)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit ${ICONV_LIBRARY} ${COREFOUNDATION_LIBRARY} ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${RT_LIBRARY} ${GLEW_LIBRARY} ${GLFW_LIBRARIES})
|
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit ${ICONV_LIBRARY} ${COREFOUNDATION_LIBRARY} ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${RT_LIBRARY} ${GLEW_LIBRARY})
|
|
|
|
|
|
|
|
if(USE_QT5)
|
|
|
|
|
|
|
|
target_link_libraries(citra-qt Qt5::Gui Qt5::Widgets Qt5::OpenGL)
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
|
|
|
|
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
|
|
|
|