diff options
| author | 2014-04-28 19:40:39 -0700 | |
|---|---|---|
| committer | 2014-04-28 19:40:39 -0700 | |
| commit | 5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041 (patch) | |
| tree | fb68ecea60a4b06ab7142bedc22eb67913a63449 /src/video_core | |
| parent | Fix complaints about functions that could not be found (diff) | |
| download | yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.gz yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.xz yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.zip | |
IT'S ALIVE!
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 56394b930..8d04d381c 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -2,4 +2,9 @@ set(SRCS video_core.cpp | |||
| 2 | utils.cpp | 2 | utils.cpp |
| 3 | renderer_opengl/renderer_opengl.cpp) | 3 | renderer_opengl/renderer_opengl.cpp) |
| 4 | 4 | ||
| 5 | add_library(video_core STATIC ${SRCS}) | 5 | set(HEADS video_core.h |
| 6 | utils.h | ||
| 7 | renderer_base.h | ||
| 8 | renderer_opengl/renderer_opengl.h) | ||
| 9 | |||
| 10 | add_library(video_core STATIC ${SRCS} ${HEADS}) | ||