mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
10 lines
186 B
CMake
10 lines
186 B
CMake
add_library(kernel INTERFACE)
|
|
target_include_directories(kernel INTERFACE include)
|
|
|
|
if (WITH_PS3)
|
|
add_subdirectory(cellos)
|
|
endif()
|
|
|
|
if (WITH_PS4)
|
|
add_subdirectory(orbis)
|
|
endif()
|