Skip to content

Commit

Permalink
Fix a few platform bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
DesktopFolder committed May 14, 2022
1 parent 1fc70c5 commit b9db7fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if (OPTIMIZE_SEED)
endif()

target_include_directories(WitchHutFinder PRIVATE "${CMAKE_SOURCE_DIR}/cubiomes")
target_link_libraries(WitchHutFinder PUBLIC -lm -fwrapv)
target_link_libraries(WitchHutFinder PUBLIC -lm -fwrapv -lpthread)
target_link_libraries(WitchHutFinder PUBLIC ${CMAKE_SOURCE_DIR}/cubiomes/libcubiomes.a)

# Add the cubiomes dependency to ensure it is built.
Expand Down
1 change: 1 addition & 0 deletions parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <string>
#include <string_view>
#include <vector>
#include <algorithm>

/* A few basic algorithms, because we can */
// This should use sfinae/concepts for a few specializations to avoid references.
Expand Down

0 comments on commit b9db7fb

Please sign in to comment.