mirror of https://git.suyu.dev/suyu/suyu
renamed project to 'citrus'
parent
9709dd2def
commit
b8ca09160b
@ -1,7 +1,7 @@
|
||||
add_subdirectory(common)
|
||||
add_subdirectory(core)
|
||||
add_subdirectory(akiru)
|
||||
add_subdirectory(citrus)
|
||||
|
||||
if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4)
|
||||
add_subdirectory(akiru_qt)
|
||||
#add_subdirectory(citrus_qt)
|
||||
endif()
|
||||
|
@ -1,12 +0,0 @@
|
||||
set(SRCS src/akiru.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(akiru ${SRCS})
|
||||
target_link_libraries(akiru core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB})
|
||||
|
||||
#install(TARGETS akiru RUNTIME DESTINATION ${bindir})
|
@ -0,0 +1,12 @@
|
||||
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})
|
Loading…
Reference in New Issue