mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
19 lines
431 B
CMake
19 lines
431 B
CMake
# Enable modules to include each other's files
|
|
include_directories(.)
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(core)
|
|
add_subdirectory(video_core)
|
|
add_subdirectory(audio_core)
|
|
add_subdirectory(network)
|
|
add_subdirectory(input_common)
|
|
add_subdirectory(tests)
|
|
if (ENABLE_SDL2)
|
|
add_subdirectory(citra)
|
|
endif()
|
|
if (ENABLE_QT)
|
|
add_subdirectory(citra_qt)
|
|
endif()
|
|
if (ENABLE_WEB_SERVICE)
|
|
add_subdirectory(web_service)
|
|
endif()
|