summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CMakeLists.txt')
-rw-r--r--src/core/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index b19335fe1..7aa81e885 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
@@ -178,6 +179,7 @@ set(SRCS
178 ) 179 )
179 180
180set(HEADERS 181set(HEADERS
182 3ds.h
181 arm/arm_interface.h 183 arm/arm_interface.h
182 arm/dynarmic/arm_dynarmic.h 184 arm/dynarmic/arm_dynarmic.h
183 arm/dynarmic/arm_dynarmic_cp15.h 185 arm/dynarmic/arm_dynarmic_cp15.h
@@ -216,6 +218,7 @@ set(HEADERS
216 frontend/camera/factory.h 218 frontend/camera/factory.h
217 frontend/camera/interface.h 219 frontend/camera/interface.h
218 frontend/emu_window.h 220 frontend/emu_window.h
221 frontend/framebuffer_layout.h
219 frontend/input.h 222 frontend/input.h
220 frontend/motion_emu.h 223 frontend/motion_emu.h
221 gdbstub/gdbstub.h 224 gdbstub/gdbstub.h
@@ -377,5 +380,5 @@ include_directories(../../externals/cryptopp)
377create_directory_groups(${SRCS} ${HEADERS}) 380create_directory_groups(${SRCS} ${HEADERS})
378 381
379add_library(core STATIC ${SRCS} ${HEADERS}) 382add_library(core STATIC ${SRCS} ${HEADERS})
380 383target_link_libraries(core PUBLIC common PRIVATE audio_core video_core)
381target_link_libraries(core dynarmic cryptopp) 384target_link_libraries(core PRIVATE cryptopp dynarmic)