CMakeLists.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. set(SRCS core.cpp
  2. core_timing.cpp
  3. loader.cpp
  4. mem_map.cpp
  5. mem_map_funcs.cpp
  6. system.cpp
  7. arm/disassembler/arm_disasm.cpp
  8. arm/disassembler/load_symbol_map.cpp
  9. arm/interpreter/arm_interpreter.cpp
  10. arm/interpreter/armcopro.cpp
  11. arm/interpreter/armemu.cpp
  12. arm/interpreter/arminit.cpp
  13. arm/interpreter/armmmu.cpp
  14. arm/interpreter/armos.cpp
  15. arm/interpreter/armsupp.cpp
  16. arm/interpreter/armvirt.cpp
  17. arm/interpreter/thumbemu.cpp
  18. arm/interpreter/vfp/vfp.cpp
  19. arm/interpreter/vfp/vfpdouble.cpp
  20. arm/interpreter/vfp/vfpinstr.cpp
  21. arm/interpreter/vfp/vfpsingle.cpp
  22. arm/interpreter/mmu/arm1176jzf_s_mmu.cpp
  23. arm/interpreter/mmu/cache.cpp
  24. arm/interpreter/mmu/maverick.cpp
  25. arm/interpreter/mmu/rb.cpp
  26. arm/interpreter/mmu/sa_mmu.cpp
  27. arm/interpreter/mmu/tlb.cpp
  28. arm/interpreter/mmu/wb.cpp
  29. arm/interpreter/mmu/xscale_copro.cpp
  30. elf/elf_reader.cpp
  31. file_sys/directory_file_system.cpp
  32. file_sys/meta_file_system.cpp
  33. hle/hle.cpp
  34. hle/config_mem.cpp
  35. hle/coprocessor.cpp
  36. hle/svc.cpp
  37. hle/kernel/kernel.cpp
  38. hle/kernel/mutex.cpp
  39. hle/kernel/thread.cpp
  40. hle/service/apt.cpp
  41. hle/service/gsp.cpp
  42. hle/service/hid.cpp
  43. hle/service/service.cpp
  44. hle/service/srv.cpp
  45. hw/hw.cpp
  46. hw/lcd.cpp
  47. hw/ndma.cpp)
  48. set(HEADERS core.h
  49. core_timing.h
  50. loader.h
  51. mem_map.h
  52. system.h
  53. arm/disassembler/arm_disasm.h
  54. arm/disassembler/load_symbol_map.h
  55. arm/interpreter/arm_interpreter.h
  56. arm/interpreter/arm_regformat.h
  57. arm/interpreter/armcpu.h
  58. arm/interpreter/armdefs.h
  59. arm/interpreter/armemu.h
  60. arm/interpreter/armmmu.h
  61. arm/interpreter/armos.h
  62. arm/interpreter/skyeye_defs.h
  63. arm/interpreter/mmu/arm1176jzf_s_mmu.h
  64. arm/interpreter/mmu/cache.h
  65. arm/interpreter/mmu/rb.h
  66. arm/interpreter/mmu/sa_mmu.h
  67. arm/interpreter/mmu/tlb.h
  68. arm/interpreter/mmu/wb.h
  69. arm/interpreter/vfp/asm_vfp.h
  70. arm/interpreter/vfp/vfp.h
  71. arm/interpreter/vfp/vfp_helper.h
  72. elf/elf_reader.h
  73. elf/elf_types.h
  74. file_sys/directory_file_system.h
  75. file_sys/file_sys.h
  76. file_sys/meta_file_system.h
  77. hle/config_mem.h
  78. hle/coprocessor.h
  79. hle/hle.h
  80. hle/syscall.h
  81. hle/function_wrappers.h
  82. hle/service/apt.h
  83. hle/service/gsp.h
  84. hle/service/hid.h
  85. hle/service/service.h
  86. hle/service/srv.h
  87. hw/hw.h
  88. hw/lcd.h
  89. hw/ndma.h)
  90. add_library(core STATIC ${SRCS} ${HEADERS})