Skip to content

Commit

Permalink
build: Rename src_ex to src_full
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Nov 4, 2024
1 parent 93fafce commit f13575c
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 @@ -68,7 +68,7 @@ mcfgthread_src_min = [
'mcfgthread/gthr_aux.c',
]

mcfgthread_src_ex = [
mcfgthread_src_full = [
'mcfgthread/gthr.c',
'mcfgthread/gthr_libobjc.c',
'mcfgthread/c11.c',
Expand Down Expand Up @@ -350,7 +350,7 @@ lib_mcfgthread_dll = shared_library('mcfgthread',
c_args: lib_mcfgthread_c_args + [ '-D__MCF_BUILDING_DLL' ],
link_args: lib_mcfgthread_dll_link_args,
objects: lib_mcfgthread_minimal_dll.extract_objects(mcfgthread_src_min),
sources: [ mcfgthread_src_ex, mcfgthread_version_o ],
sources: [ mcfgthread_src_full, mcfgthread_version_o ],
dependencies: [ dep_kernel32, dep_ntdll ],
soversion: ver.get('abi_major'),
version: '.'.join([ ver.get('abi_major'), ver.get('abi_minor'), '0' ]),
Expand All @@ -363,7 +363,7 @@ else
lib_mcfgthread_a = static_library('mcfgthread',
c_pch: 'mcfgthread/xprecompiled.h',
c_args: lib_mcfgthread_c_args + [ '-ffunction-sections' ],
sources: [ mcfgthread_src_min, mcfgthread_src_ex, ],
sources: [ mcfgthread_src_min, mcfgthread_src_full, ],
dependencies: [ dep_kernel32, dep_ntdll ],
install: true)
endif
Expand Down

0 comments on commit f13575c

Please sign in to comment.