summaryrefslogtreecommitdiff
path: root/src/common/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/CMakeLists.txt41
1 files changed, 40 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 5eaf67365..aae183393 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -19,4 +19,43 @@ set(SRCS break_points.cpp
19 timer.cpp 19 timer.cpp
20 utf8.cpp) 20 utf8.cpp)
21 21
22add_library(common STATIC ${SRCS}) 22set(HEADERS atomic.h
23 atomic_gcc.h
24 atomic_win32.h
25 bit_field.h
26 break_points.h
27 chunk_file.h
28 common_funcs.h
29 common_paths.h
30 common_types.h
31 common.h
32 console_listener.h
33 cpu_detect.h
34 debug_interface.h
35 emu_window.h
36 extended_trace.h
37 fifo_queue.h
38 file_search.h
39 file_util.h
40 hash.h
41 linear_disk_cache.h
42 log_manager.h
43 log.h
44 math_util.h
45 mem_arena.h
46 memory_util.h
47 msg_handler.h
48 platform.h
49 scm_rev.h
50 std_condition_variable.h
51 std_mutex.h
52 std_thread.h
53 string_util.h
54 swap.h
55 symbols.h
56 thread.h
57 thunk.h
58 timer.h
59 utf8.h)
60
61add_library(common STATIC ${SRCS} ${HEADERS})