Skip to content

Commit

Permalink
build: Updated libwolv
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Dec 1, 2023
1 parent 7721876 commit 6021148
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/libwolv
Submodule libwolv updated 43 files
+5 −3 CMakeLists.txt
+3 −1 libs/containers/CMakeLists.txt
+25 −1 libs/containers/include/wolv/container/interval_tree.hpp
+4 −1 libs/hash/CMakeLists.txt
+1 −1 libs/hash/include/wolv/hash/uuid.hpp
+4 −1 libs/io/CMakeLists.txt
+25 −20 libs/io/include/wolv/io/buffered_reader.hpp
+4 −5 libs/io/source/io/file.cpp
+1 −1 libs/io/source/io/fs.cpp
+17 −0 libs/math_eval/CMakeLists.txt
+12 −0 libs/math_eval/example/main.cpp
+127 −0 libs/math_eval/include/wolv/math_eval/math_evaluator.hpp
+518 −0 libs/math_eval/source/math_eval/math_evaluator.cpp
+4 −1 libs/net/CMakeLists.txt
+0 −4 libs/net/include/wolv/net/common.hpp
+6 −0 libs/net/include/wolv/net/socket_server.hpp
+2 −0 libs/net/source/net/common.cpp
+10 −0 libs/net/source/net/socket_client.cpp
+69 −16 libs/net/source/net/socket_server.cpp
+2 −0 libs/template/CMakeLists.txt
+6 −3 libs/testing/CMakeLists.txt
+3 −0 libs/types/CMakeLists.txt
+1 −0 libs/types/example/main.cpp
+17 −0 libs/types/include/wolv/types/static_string.hpp
+3 −1 libs/utils/CMakeLists.txt
+1 −0 libs/utils/example/main.cpp
+3 −0 libs/utils/include/wolv/utils/core.hpp
+169 −0 libs/utils/include/wolv/utils/expected.hpp
+4 −0 libs/utils/include/wolv/utils/preproc.hpp
+1 −0 libs/utils/include/wolv/utils/string.hpp
+15 −2 libs/utils/include/wolv/utils/thread_pool.hpp
+54 −0 libs/utils/source/utils/string.cpp
+3 −1 tests/CMakeLists.txt
+3 −3 tests/common/CMakeLists.txt
+27 −0 tests/hash/CMakeLists.txt
+16 −0 tests/hash/source/crc.cpp
+20 −0 tests/hash/source/uuid.cpp
+3 −3 tests/io/CMakeLists.txt
+39 −0 tests/utils/CMakeLists.txt
+36 −0 tests/utils/source/guards.cpp
+30 −0 tests/utils/source/lock.cpp
+173 −0 tests/utils/source/string.cpp
+32 −0 tests/utils/source/thread_pool.cpp
2 changes: 1 addition & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ endif ()

target_include_directories(libpl PUBLIC include)
target_link_libraries(libpl PRIVATE fmt::fmt-header-only)
target_link_libraries(libpl PUBLIC libwolv-io libwolv-utils libwolv-hash libwolv-containers)
target_link_libraries(libpl PUBLIC wolv::io wolv::utils wolv::hash wolv::containers)

set_property(TARGET libpl PROPERTY POSITION_INDEPENDENT_CODE ON)

Expand Down

0 comments on commit 6021148

Please sign in to comment.