From b8ca09160b39120d1f55a2016cb652810dbd5619 Mon Sep 17 00:00:00 2001 From: ShizZy Date: Fri, 13 Sep 2013 18:11:14 -0400 Subject: renamed project to 'citrus' --- src/citrus/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/citrus/CMakeLists.txt (limited to 'src/citrus/CMakeLists.txt') diff --git a/src/citrus/CMakeLists.txt b/src/citrus/CMakeLists.txt new file mode 100644 index 000000000..6858a5891 --- /dev/null +++ b/src/citrus/CMakeLists.txt @@ -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}) -- cgit v1.2.3