mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-20 10:47:54 -05:00
CMake cleanup
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.
This commit is contained in:
@ -1,9 +1,12 @@
|
||||
# Enable modules to include each other's files
|
||||
include_directories(.)
|
||||
|
||||
add_subdirectory(common)
|
||||
add_subdirectory(core)
|
||||
add_subdirectory(video_core)
|
||||
add_subdirectory(citra)
|
||||
add_subdirectory(citra_qt)
|
||||
|
||||
if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4)
|
||||
#add_subdirectory(citra_qt)
|
||||
if (ENABLE_GLFW)
|
||||
add_subdirectory(citra)
|
||||
endif()
|
||||
if (ENABLE_QT)
|
||||
add_subdirectory(citra_qt)
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user