diff options
author | archshift <admin@archshift.com> | 2014-04-29 04:40:39 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-04-29 04:40:39 +0200 |
commit | 5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041 (patch) | |
tree | fb68ecea60a4b06ab7142bedc22eb67913a63449 /src/common | |
parent | Fix complaints about functions that could not be found (diff) | |
download | yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.gz yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.bz2 yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.lz yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.xz yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.tar.zst yuzu-5a9c2ce5ea1b272d73001acaf9ec15f1c0e5e041.zip |
Diffstat (limited to '')
-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 timer.cpp utf8.cpp) -add_library(common STATIC ${SRCS}) +set(HEADS atomic.h + atomic_gcc.h + atomic_win32.h + break_points.h + chunk_file.h + common_funcs.h + common_paths.h + common_types.h + common.h + console_listener.h + cpu_detect.h + debug_interface.h + emu_window.h + extended_trace.h + fifo_queue.h + file_search.h + file_util.h + hash.h + linear_disk_cache.h + log_manager.h + log.h + math_util.h + mem_arena.h + memory_util.h + msg_handler.h + platform.h + scm_rev.h + std_condition_variable.h + std_mutex.h + std_thread.h + string_util.h + swap.h + symbols.h + thread.h + thunk.h + timer.h + utf8.h) + +add_library(common STATIC ${SRCS} ${HEADS}) |