diff options
| author | 2014-04-28 19:40:39 -0700 | |
|---|---|---|
| committer | 2014-04-28 19:40:39 -0700 | |
| commit | 5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041 (patch) | |
| tree | fb68ecea60a4b06ab7142bedc22eb67913a63449 /src/common | |
| 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/common')
| -rw-r--r-- | src/common/CMakeLists.txt | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 5eaf67365..48f30de4c 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -19,4 +19,42 @@ set(SRCS break_points.cpp | |||
| 19 | timer.cpp | 19 | timer.cpp |
| 20 | utf8.cpp) | 20 | utf8.cpp) |
| 21 | 21 | ||
| 22 | add_library(common STATIC ${SRCS}) | 22 | set(HEADS atomic.h |
| 23 | atomic_gcc.h | ||
| 24 | atomic_win32.h | ||
| 25 | break_points.h | ||
| 26 | chunk_file.h | ||
| 27 | common_funcs.h | ||
| 28 | common_paths.h | ||
| 29 | common_types.h | ||
| 30 | common.h | ||
| 31 | console_listener.h | ||
| 32 | cpu_detect.h | ||
| 33 | debug_interface.h | ||
| 34 | emu_window.h | ||
| 35 | extended_trace.h | ||
| 36 | fifo_queue.h | ||
| 37 | file_search.h | ||
| 38 | file_util.h | ||
| 39 | hash.h | ||
| 40 | linear_disk_cache.h | ||
| 41 | log_manager.h | ||
| 42 | log.h | ||
| 43 | math_util.h | ||
| 44 | mem_arena.h | ||
| 45 | memory_util.h | ||
| 46 | msg_handler.h | ||
| 47 | platform.h | ||
| 48 | scm_rev.h | ||
| 49 | std_condition_variable.h | ||
| 50 | std_mutex.h | ||
| 51 | std_thread.h | ||
| 52 | string_util.h | ||
| 53 | swap.h | ||
| 54 | symbols.h | ||
| 55 | thread.h | ||
| 56 | thunk.h | ||
| 57 | timer.h | ||
| 58 | utf8.h) | ||
| 59 | |||
| 60 | add_library(common STATIC ${SRCS} ${HEADS}) | ||