Skip to content

Commit

Permalink
Switch over to static libs instead
Browse files Browse the repository at this point in the history
Finally managed to find a decent lead

This seems to be an instance of

libarchive/libarchive#997

So I'll just switch everything over to the dynamic library

Not great, but it'll be fiiiine
  • Loading branch information
LunarWatcher committed Jul 18, 2024
1 parent 581cc41 commit 118df72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions transformer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

set (CMAKE_CXX_STANDARD 20)
set (CMAKE_POSITION_INDEPENDENT_CODE ON)
set (BUILD_SHARED_LIBS OFF)

set (ENABLE_TEST OFF CACHE STRING "" FORCE)

Expand Down Expand Up @@ -55,9 +54,9 @@ target_include_directories(sedd-transformer PUBLIC src)
target_link_Libraries(
sedd-transformer
PUBLIC
archive_static
archive
stc
spdlog::spdlog
pugixml::static
pugixml
CLI11::CLI11
)

1 comment on commit 118df72

@LunarWatcher
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dynamic*, from static

Please sign in to comment.