-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/__build__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright 2024 Peter Dimov | ||
# Distributed under the Boost Software License, Version 1.0. | ||
# https://www.boost.org/LICENSE_1_0.txt | ||
|
||
link_libraries(Boost::hash2 Boost::core Boost::unordered) | ||
|
||
add_executable(buffer buffer.cpp) | ||
add_executable(unordered unordered.cpp) | ||
add_executable(average average.cpp) | ||
add_executable(keys keys.cpp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2024 Peter Dimov | ||
# Distributed under the Boost Software License, Version 1.0. | ||
# https://www.boost.org/LICENSE_1_0.txt | ||
|
||
link_libraries(Boost::hash2 Boost::unordered Boost::endian) | ||
|
||
add_executable(md5sum md5sum.cpp) | ||
add_executable(hash2sum hash2sum.cpp) | ||
add_executable(compile_time compile_time.cpp) | ||
add_executable(compile_time_2 compile_time_2.cpp) | ||
add_executable(hash_without_seed hash_without_seed.cpp) | ||
add_executable(hash_with_uint64_seed hash_with_uint64_seed.cpp) | ||
add_executable(hash_with_byte_seed hash_with_byte_seed.cpp) | ||
add_executable(hash_with_any_seed hash_with_any_seed.cpp) | ||
add_executable(hash_32_64 hash_32_64.cpp) | ||
add_executable(xxh128_from_xxh64 xxh128_from_xxh64.cpp) |