mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
186 B
CMake
11 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()
|