aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/CMakeLists.txt
blob: 2b9d4b93c1cf8e63e32da084d144a4f7607f7c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
set(SRCS
            bootmanager.cpp
            callstack.cpp
            disassembler.cpp
            registers.cpp
            hotkeys.cpp
            main.cpp
            ramview.cpp
            config/controller_config.cpp
            config/controller_config_util.cpp)

qt4_wrap_ui(UI_HDRS
                    callstack.ui
                    disassembler.ui
                    registers.ui
                    hotkeys.ui
                    main.ui
                    config/controller_config.ui)

qt4_wrap_cpp(MOC_SRCS
                        bootmanager.hxx
                        callstack.hxx
                        disassembler.hxx
                        registers.hxx
                        hotkeys.hxx
                        main.hxx
                        ramview.hxx
                        config/controller_config.hxx
                        config/controller_config_util.hxx)

# add uic results to include directories
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(./)

add_executable(citra-qt ${SRCS} ${MOC_SRCS} ${UI_HDRS})
target_link_libraries(citra-qt core common qhexedit ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARY} rt GLEW ${GLFW_LIBRARIES})

#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})