Skip to content

Commit

Permalink
Include objects in archives.
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Oct 24, 2023
1 parent 8bb6dda commit 1bb476c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/homestore_backend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ target_sources("${PROJECT_NAME}_homestore" PRIVATE
index_kv.cpp
heap_chunk_selector.cpp
replication_state_machine.cpp
$<TARGET_OBJECTS:${PROJECT_NAME}_core>
)
target_link_libraries("${PROJECT_NAME}_homestore"
${COMMON_DEPS}
Expand All @@ -21,7 +22,6 @@ add_executable (homestore_test)
target_sources(homestore_test PRIVATE
$<TARGET_OBJECTS:homestore_tests>
$<TARGET_OBJECTS:test_fixture>
$<TARGET_OBJECTS:${PROJECT_NAME}_core>
)
target_link_libraries(homestore_test
homeobject_homestore
Expand Down
2 changes: 1 addition & 1 deletion src/lib/memory_backend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ target_sources("${PROJECT_NAME}_memory" PRIVATE
mem_blob_manager.cpp
mem_shard_manager.cpp
mem_pg_manager.cpp
$<TARGET_OBJECTS:${PROJECT_NAME}_core>
)
target_link_libraries("${PROJECT_NAME}_memory"
${COMMON_DEPS}
Expand All @@ -15,7 +16,6 @@ if(BUILD_TESTING)
add_executable (memory_test)
target_sources(memory_test PRIVATE
$<TARGET_OBJECTS:test_fixture>
$<TARGET_OBJECTS:${PROJECT_NAME}_core>
)
target_link_libraries(memory_test
homeobject_memory
Expand Down

0 comments on commit 1bb476c

Please sign in to comment.