mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
21 lines
464 B
CMake
21 lines
464 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()
|
|
add_subdirectory(dedicated_room)
|