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

edit cmake

This commit is contained in:
源文雨
2022-03-29 19:48:35 +08:00
parent dc29acebf5
commit 8957f732aa

View File

@@ -19,17 +19,17 @@ message(STATUS "optional:-std=c99")
add_executable(simple-dict-server server.c dict.c crypto.c) add_executable(simple-dict-server server.c dict.c crypto.c)
add_executable(simple-dict-client client.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) add_executable(cfgwriter cfgwriter.c)
#add_executable(migrate migrate.c)
#add_executable(migratenew migratenew.c)
target_link_libraries(simple-dict-server scrypto spb pthread) target_link_libraries(simple-dict-server scrypto spb pthread)
target_link_libraries(simple-dict-client scrypto pthread) target_link_libraries(simple-dict-client scrypto pthread)
target_link_libraries(migrate spb)
target_link_libraries(migratenew spb)
target_link_libraries(cfgwriter spb) target_link_libraries(cfgwriter spb)
#target_link_libraries(migrate spb)
#target_link_libraries(migratenew spb)
INSTALL(TARGETS simple-dict-server RUNTIME DESTINATION bin) INSTALL(TARGETS simple-dict-server RUNTIME DESTINATION bin)
#INSTALL(TARGETS simple-dict-client RUNTIME DESTINATION bin) #INSTALL(TARGETS simple-dict-client RUNTIME DESTINATION bin)
#INSTALL(TARGETS migrate RUNTIME DESTINATION bin)
#INSTALL(TARGETS cfgwriter RUNTIME DESTINATION bin) #INSTALL(TARGETS cfgwriter RUNTIME DESTINATION bin)