Skip to content

Commit

Permalink
build: Reorder source files
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Nov 4, 2024
1 parent 7e95d68 commit 93fafce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ project('mcfgthread',
# List of files
#===========================================================
mcfgthread_include = [
'mcfgthread/atomic.h',
'mcfgthread/fwd.h',
'mcfgthread/atomic.h',
'mcfgthread/clock.h',
'mcfgthread/mutex.h',
'mcfgthread/shared_mutex.h',
Expand All @@ -46,13 +46,13 @@ mcfgthread_include = [
]

mcfgthread_src_min = [
'mcfgthread/xglobals.c',
'mcfgthread/memcpy.c',
'mcfgthread/memmove.c',
'mcfgthread/memcmp.c',
'mcfgthread/memset.c',
'mcfgthread/atomic.c',
'mcfgthread/xglobals.c',
'mcfgthread/fwd.c',
'mcfgthread/atomic.c',
'mcfgthread/clock.c',
'mcfgthread/mutex.c',
'mcfgthread/shared_mutex.c',
Expand Down

0 comments on commit 93fafce

Please sign in to comment.