Skip to content

Commit

Permalink
bshoshany-thread-pool: update to v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bshoshany committed Dec 20, 2024
1 parent d00065c commit 4d34f8c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@
"bshoshany-thread-pool"
],
"versions": [
"5.0.0-1",
"4.1.0-1",
"4.0.1-1",
"4.0.0-1",
Expand Down
8 changes: 4 additions & 4 deletions subprojects/bshoshany-thread-pool.wrap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[wrap-file]
directory = thread-pool-4.1.0
source_url = https://github.com/bshoshany/thread-pool/archive/refs/tags/v4.1.0.zip
source_filename = thread-pool-4.1.0.zip
source_hash = a18a28491653072afe27f76e19fa510f5801c3811609480f1da7409861e0f0fe
directory = thread-pool-5.0.0
source_url = https://github.com/bshoshany/thread-pool/archive/refs/tags/v5.0.0.zip
source_filename = thread-pool-5.0.0.zip
source_hash = d3e4be162c45ac784ac6fb2096f9494469571a3473a18829c2adae1aab67cfbc
patch_directory = bshoshany-thread-pool

[provide]
Expand Down
6 changes: 3 additions & 3 deletions subprojects/packagefiles/bshoshany-thread-pool/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('bshoshany-thread-pool', 'cpp',
version : '4.1.0',
version : '5.0.0',
license : 'MIT',
meson_version: '>=0.47.0',
default_options: ['cpp_std=c++17'],
Expand All @@ -8,7 +8,7 @@ project('bshoshany-thread-pool', 'cpp',
thread_dep = dependency('threads')

bshoshany_thread_pool_dep = declare_dependency(
include_directories: include_directories('include'),
include_directories: include_directories('include', 'modules'),
dependencies: thread_dep
)

Expand All @@ -22,7 +22,7 @@ endif
if not meson.is_subproject()
install_headers(
'include/BS_thread_pool.hpp',
'include/BS_thread_pool_utils.hpp'
'modules/BS.thread_pool.cppm'
)
endif

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BS_thread_pool_test_exe = executable('thread_pool_test',
BS_thread_pool_test_exe = executable('BS_thread_pool_test',
'BS_thread_pool_test.cpp',
dependencies: [bshoshany_thread_pool_dep],
)

test('thread_pool_test', BS_thread_pool_test_exe)
benchmark('thread_pool_test benchmark', BS_thread_pool_test_exe)
test('BS_thread_pool_test', BS_thread_pool_test_exe, args: 'log stdout tests')
benchmark('BS_thread_pool_test benchmark', BS_thread_pool_test_exe, args: 'log stdout benchmarks')

0 comments on commit 4d34f8c

Please sign in to comment.