diff options
| author | 2013-09-04 20:42:27 -0400 | |
|---|---|---|
| committer | 2013-09-04 20:42:27 -0400 | |
| commit | d9c849586e2beb5944e21f8dc650a2a9f09d4f71 (patch) | |
| tree | a033aceb2d3eedf8fa6f805bb75796ef9f62783b | |
| parent | replaced common code with dolphin common (diff) | |
| download | yuzu-d9c849586e2beb5944e21f8dc650a2a9f09d4f71.tar.gz yuzu-d9c849586e2beb5944e21f8dc650a2a9f09d4f71.tar.xz yuzu-d9c849586e2beb5944e21f8dc650a2a9f09d4f71.zip | |
updated CMakeLists.txt file for new common files
| -rw-r--r-- | src/common/CMakeLists.txt | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index ace0c409d..0e0a43464 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -1,11 +1,18 @@ | |||
| 1 | set(SRCS src/config.cpp | 1 | set(SRCS src/break_points.cpp |
| 2 | src/crc.cpp | 2 | src/console_listener.cpp |
| 3 | src/file_utils.cpp | 3 | src/extended_trace.cpp |
| 4 | src/hash.cpp | 4 | src/file_search.cpp |
| 5 | src/log.cpp | 5 | src/file_util.cpp |
| 6 | src/misc_utils.cpp | 6 | src/hash.cpp |
| 7 | src/timer.cpp | 7 | src/log_manager.cpp |
| 8 | src/x86_utils.cpp | 8 | src/math_util.cpp |
| 9 | src/xml.cpp) | 9 | src/mem_arena.cpp |
| 10 | src/memory_util.cpp | ||
| 11 | src/misc.cpp | ||
| 12 | src/msg_handler.cpp | ||
| 13 | src/string_util.cpp | ||
| 14 | src/thread.cpp | ||
| 15 | src/timer.cpp | ||
| 16 | src/version.cpp) | ||
| 10 | 17 | ||
| 11 | add_library(common STATIC ${SRCS}) | 18 | add_library(common STATIC ${SRCS}) |