Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix windows build #2188

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions userspace/libscap/engine/savefile/converter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# the License.
#

# Since we have circular dependencies between libscap and the savefile engine, make this library
# always static (directly linked into libscap)
add_library(scap_savefile_converter STATIC converter.cpp table.cpp)
# Using `STATIC` is not enough on Windows builds, so we directly create object files that will be
# included inside `scap_engine_savefile` library
add_library(scap_savefile_converter OBJECT converter.cpp table.cpp)

add_dependencies(scap_savefile_converter uthash)
target_include_directories(
Expand Down
Loading