This repository has been archived on 2025-12-14. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
github.ong19th.Citron/src/citra/CMakeLists.txt
2014-04-30 16:56:47 -07:00

14 lines
500 B
CMake

set(SRCS citra.cpp
emu_window/emu_window_glfw.cpp)
set(HEADS citra.h
resource.h)
add_executable(citra ${SRCS} ${HEADS})
if (APPLE)
target_link_libraries(citra core common video_core iconv pthread ${COREFOUNDATION_LIBRARY} ${OPENGL_LIBRARIES} ${GLEW_LIBRARY} ${GLFW_LIBRARIES})
else()
target_link_libraries(citra core common video_core pthread ${OPENGL_LIBRARIES} ${GLEW_LIBRARY} ${GLFW_LIBRARIES})
endif()
#install(TARGETS citra RUNTIME DESTINATION ${bindir})