mirror of https://git.suyu.dev/suyu/suyu
renamed from citrus to citra
parent
a7b06698ff
commit
8bb0c457bc
@ -1,7 +1,7 @@
|
||||
add_subdirectory(common)
|
||||
add_subdirectory(core)
|
||||
add_subdirectory(citrus)
|
||||
add_subdirectory(citra)
|
||||
|
||||
if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4)
|
||||
#add_subdirectory(citrus_qt)
|
||||
#add_subdirectory(citra_qt)
|
||||
endif()
|
||||
|
@ -0,0 +1,12 @@
|
||||
set(SRCS src/citra.cpp
|
||||
src/emuwindow/emuwindow_glfw.cpp)
|
||||
|
||||
# NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable)
|
||||
if (NOT X11_xf86vmode_LIB)
|
||||
set(X11_xv86vmode_LIB Xxf86vm)
|
||||
endif()
|
||||
|
||||
add_executable(citra ${SRCS})
|
||||
target_link_libraries(citra core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB})
|
||||
|
||||
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|
@ -1,12 +0,0 @@
|
||||
set(SRCS src/citrus.cpp
|
||||
src/emuwindow/emuwindow_glfw.cpp)
|
||||
|
||||
# NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable)
|
||||
if (NOT X11_xf86vmode_LIB)
|
||||
set(X11_xv86vmode_LIB Xxf86vm)
|
||||
endif()
|
||||
|
||||
add_executable(citrus ${SRCS})
|
||||
target_link_libraries(citrus core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB})
|
||||
|
||||
#install(TARGETS citrus RUNTIME DESTINATION ${bindir})
|
@ -1,4 +1,4 @@
|
||||
#define SCM_REV_STR "bfa6493324336066a1ef9d04f336faacae57d9f3"
|
||||
#define SCM_DESC_STR "bfa6493"
|
||||
#define SCM_REV_STR "a7b06698ff012aa7b1094414e796ffae1ca1eb4d"
|
||||
#define SCM_DESC_STR "a7b0669"
|
||||
#define SCM_BRANCH_STR "master"
|
||||
#define SCM_IS_MASTER 1
|
||||
|
Loading…
Reference in New Issue