summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Lioncash2018-12-19 12:57:47 -0500
committerGravatar Lioncash2018-12-21 07:05:31 -0500
commit6ff5135521a59cd510ba3ecc8d5ff5d56cdbf08e (patch)
treef2b45468a65f650c03e47fe3a494cf1d27c1fab3 /src/core/CMakeLists.txt
parentcommon: Add basic bit manipulation utility function to Common (diff)
downloadyuzu-6ff5135521a59cd510ba3ecc8d5ff5d56cdbf08e.tar.gz
yuzu-6ff5135521a59cd510ba3ecc8d5ff5d56cdbf08e.tar.xz
yuzu-6ff5135521a59cd510ba3ecc8d5ff5d56cdbf08e.zip
kernel/process: Introduce process capability parsing skeleton
We've had the old kernel capability parser from Citra, however, this is unused code and doesn't actually map to how the kernel on the Switch does it. This introduces the basic functional skeleton for parsing process capabilities.
Diffstat (limited to 'src/core/CMakeLists.txt')
-rw-r--r--src/core/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 882c9ab59..a7d5e4431 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -113,6 +113,8 @@ add_library(core STATIC
113 hle/kernel/object.h 113 hle/kernel/object.h
114 hle/kernel/process.cpp 114 hle/kernel/process.cpp
115 hle/kernel/process.h 115 hle/kernel/process.h
116 hle/kernel/process_capability.cpp
117 hle/kernel/process_capability.h
116 hle/kernel/readable_event.cpp 118 hle/kernel/readable_event.cpp
117 hle/kernel/readable_event.h 119 hle/kernel/readable_event.h
118 hle/kernel/resource_limit.cpp 120 hle/kernel/resource_limit.cpp