Changeset 0e2eee1 in mainline
- Timestamp:
- 2023-11-30T17:08:31Z (13 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 8f04992
- Parents:
- ef4d684
- Location:
- uspace
- Files:
-
- 2 added
- 5 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hbench/meson.build
ref4d684 r0e2eee1 1 1 # 2 # Copyright (c) 20 18Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ 'math' ]29 deps = [ 'math', 'ipctest' ] 30 30 src = files( 31 31 'benchlist.c', -
uspace/app/tester/meson.build
ref4d684 r0e2eee1 1 1 # 2 # Copyright (c) 202 1Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # Copyright (c) 2005 Martin Decky 4 4 # Copyright (c) 2007 Jakub Jermar … … 29 29 # 30 30 31 deps = [ 'block', 'codepage', 'drv', 'math' ]31 deps = [ 'block', 'codepage', 'drv', 'math', 'ipctest' ] 32 32 src = files( 33 33 'tester.c', -
uspace/lib/c/meson.build
ref4d684 r0e2eee1 96 96 'generic/errno.c', 97 97 'generic/inttypes.c', 98 'generic/ipc_test.c',99 98 'generic/loc.c', 100 99 'generic/string.c', -
uspace/lib/ipctest/include/ipc/ipc_test.h
ref4d684 r0e2eee1 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib cipc29 /** @addtogroup libipctest 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IPC_IPC_TEST_H_36 #define _LIB C_IPC_IPC_TEST_H_35 #ifndef _LIBIPCTEST_IPC_IPC_TEST_H_ 36 #define _LIBIPCTEST_IPC_IPC_TEST_H_ 37 37 38 38 #include <ipc/common.h> -
uspace/lib/ipctest/include/ipc_test.h
ref4d684 r0e2eee1 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libipctest 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IPC_TEST_H_36 #define _LIB C_IPC_TEST_H_35 #ifndef _LIBIPCTEST_H_ 36 #define _LIBIPCTEST_H_ 37 37 38 38 #include <async.h> -
uspace/lib/meson.build
ref4d684 r0e2eee1 68 68 'gfx', 69 69 'http', 70 'ipctest', 70 71 'label', 71 72 'math', -
uspace/srv/test/ipc-test/meson.build
ref4d684 r0e2eee1 1 1 # 2 # Copyright (c) 20 18Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ 'ipctest' ] 29 30 src = files('main.c')
Note:
See TracChangeset
for help on using the changeset viewer.