1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-30 00:40:25 +08:00

add migratenew

This commit is contained in:
fumiama
2022-02-06 14:51:49 +08:00
parent 5075c822bf
commit 14a9a02e31
2 changed files with 56 additions and 0 deletions

View File

@@ -16,11 +16,13 @@ link_directories("/usr/local/lib")
add_executable(simple-dict-server server.c dict.c crypto.c)
add_executable(simple-dict-client client.c crypto.c)
add_executable(migrate migrate.c)
add_executable(migratenew migratenew.c)
add_executable(cfgwriter cfgwriter.c)
target_link_libraries(simple-dict-server scrypto spb pthread)
target_link_libraries(simple-dict-client scrypto pthread)
target_link_libraries(migrate spb)
target_link_libraries(migratenew spb)
target_link_libraries(cfgwriter spb)
INSTALL(TARGETS simple-dict-server RUNTIME DESTINATION bin)