Changeset 25e1490 in mainline for uspace/lib
- Timestamp:
- 2024-01-10T11:32:40Z (2 years ago)
- Branches:
- master
- Children:
- 5907aa4
- Parents:
- de96d3b (diff), 6deab5a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Vojtech Horky <vojtech.horky@…> (2024-01-10 11:32:40)
- git-committer:
- GitHub <noreply@…> (2024-01-10 11:32:40)
- Location:
- uspace/lib
- Files:
-
- 4 edited
- 4 moved
-
c/meson.build (modified) (2 diffs)
-
clui/include/nchoice.h (moved) (moved from uspace/lib/clui/nchoice.h )
-
clui/include/tinput.h (moved) (moved from uspace/lib/clui/tinput.h )
-
clui/meson.build (modified) (1 diff)
-
clui/src/nchoice.c (moved) (moved from uspace/lib/clui/nchoice.c )
-
clui/src/tinput.c (moved) (moved from uspace/lib/clui/tinput.c )
-
meson.build (modified) (2 diffs)
-
posix/meson.build (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
rde96d3b r25e1490 53 53 _sdir = meson.current_source_dir() / idir 54 54 uspace_lib_devel_install_script_text += 'cp -R -L -T "@0@" "${DESTDIR}include/libc"'.format(_sdir) 55 exported_devel_files += ['include', _sdir, 'libc'] 55 56 endforeach 56 57 … … 209 210 pic: false, 210 211 ) 212 exported_devel_files += ['staticlib', libstartfiles, 'libstartfiles.a'] 211 213 212 214 if CONFIG_DEVEL_FILES -
uspace/lib/clui/meson.build
rde96d3b r25e1490 29 29 deps = [ 'clipboard', 'console' ] 30 30 src = files( 31 ' nchoice.c',32 ' tinput.c',31 'src/nchoice.c', 32 'src/tinput.c', 33 33 ) -
uspace/lib/meson.build
rde96d3b r25e1490 180 180 if run_command('[', '-d', incdir, ']').returncode() == 0 181 181 includes += include_directories(incdir) 182 _sdir = meson.current_source_dir() / l / 'include' 182 183 183 184 if installed_libs.contains(l) 184 _sdir = meson.current_source_dir() / l / 'include'185 185 uspace_lib_devel_install_script_text += 'cp -R -L -T "@0@" "${DESTDIR}include/lib@1@"'.format(_sdir, l) 186 186 endif 187 188 exported_devel_files += ['include', _sdir, 'lib' + l] 187 189 else 188 190 includes += include_directories(l) … … 293 295 install_deps += [ _static_lib ] 294 296 endif 297 298 exported_devel_files += ['staticlib', _static_lib, 'lib' + l + '.a'] 295 299 296 300 _static_dep = declare_dependency( -
uspace/lib/posix/meson.build
rde96d3b r25e1490 67 67 uspace_lib_devel_install_script_text += 'cp -R -L -T "@0@" "${DESTDIR}include/libposix"'.format(_sdir) 68 68 uspace_lib_devel_install_script_text += 'ln -s -r "${DESTDIR}include/libc" "${DESTDIR}/include/common"' 69 70 exported_devel_files += [ 'include', meson.current_source_dir() / 'include' / 'posix', 'libposix' ] 71 exported_devel_files += [ 'includesymlink', 'libc', 'libposix' ]
Note:
See TracChangeset
for help on using the changeset viewer.
