diff options
| author | 2017-05-27 16:10:25 -0700 | |
|---|---|---|
| committer | 2017-05-27 16:10:25 -0700 | |
| commit | d1bf7919daf830befd8c2166f3844fcdb56d68fa (patch) | |
| tree | 60ab4434e7a0503d7ca5f5d195d4709fe634f3c1 /src/core/CMakeLists.txt | |
| parent | Merge pull request #2732 from yuriks/add-fmt (diff) | |
| download | yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.tar.gz yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.tar.xz yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.zip | |
Move framebuffer_layout from Common to Core
This removes a dependency inversion between core and common. It's also
the proper place for the file since it makes screen layout decisions
specific to the 3DS.
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index b19335fe1..d9618c40c 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -32,6 +32,7 @@ set(SRCS | |||
| 32 | frontend/camera/factory.cpp | 32 | frontend/camera/factory.cpp |
| 33 | frontend/camera/interface.cpp | 33 | frontend/camera/interface.cpp |
| 34 | frontend/emu_window.cpp | 34 | frontend/emu_window.cpp |
| 35 | frontend/framebuffer_layout.cpp | ||
| 35 | frontend/motion_emu.cpp | 36 | frontend/motion_emu.cpp |
| 36 | gdbstub/gdbstub.cpp | 37 | gdbstub/gdbstub.cpp |
| 37 | hle/config_mem.cpp | 38 | hle/config_mem.cpp |
| @@ -216,6 +217,7 @@ set(HEADERS | |||
| 216 | frontend/camera/factory.h | 217 | frontend/camera/factory.h |
| 217 | frontend/camera/interface.h | 218 | frontend/camera/interface.h |
| 218 | frontend/emu_window.h | 219 | frontend/emu_window.h |
| 220 | frontend/framebuffer_layout.h | ||
| 219 | frontend/input.h | 221 | frontend/input.h |
| 220 | frontend/motion_emu.h | 222 | frontend/motion_emu.h |
| 221 | gdbstub/gdbstub.h | 223 | gdbstub/gdbstub.h |