removed 'lib' prefix from libraries (cmake does this for us automatically on UNIX)

This commit is contained in:
Nick Bolton
2011-04-25 22:21:32 +00:00
parent 66c4bdc356
commit 8472fec34d
14 changed files with 19 additions and 28 deletions

View File

@@ -45,9 +45,8 @@ if (UNIX)
endif()
include_directories(${inc})
add_library(libclient STATIC ${src})
add_library(client STATIC ${src})
if (UNIX)
target_link_libraries(libclient
libsynergy libio)
target_link_libraries(client synergy io)
endif()