mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 12:47:52 +00:00
ba2a54a9dd
citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files
13 lines
284 B
CMake
13 lines
284 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)
|
|
if (ENABLE_SDL2)
|
|
add_subdirectory(citra)
|
|
endif()
|
|
if (ENABLE_QT)
|
|
add_subdirectory(citra_qt)
|
|
endif()
|