yuzu-emu
/
yuzu-android
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
yuzu-android/src/video_core/CMakeLists.txt

11 lines
270 B
CMake
Raw Normal View History

2014-04-10 03:28:43 +00:00
set(SRCS video_core.cpp
utils.cpp
renderer_opengl/renderer_opengl.cpp)
2014-04-05 20:04:25 +00:00
set(HEADERS video_core.h
2014-04-29 02:40:39 +00:00
utils.h
renderer_base.h
renderer_opengl/renderer_opengl.h)
add_library(video_core STATIC ${SRCS} ${HEADERS})