mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
45976da975
Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
12 lines
255 B
CMake
12 lines
255 B
CMake
# Enable modules to include each other's files
|
|
include_directories(.)
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(core)
|
|
add_subdirectory(video_core)
|
|
if (ENABLE_GLFW)
|
|
add_subdirectory(citra)
|
|
endif()
|
|
if (ENABLE_QT)
|
|
add_subdirectory(citra_qt)
|
|
endif()
|