cmake: Avoid artifacts called liblibmctp*

Drop the 'lib' prefix from the mctp library name, this is added based on
the target platform (e.g. Linux).

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Change-Id: I7e09296bb9ba430d4dc75e55e6deac804d9a413c
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f3f05bd..2cdb757 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,20 +5,20 @@
 add_definitions (-DMCTP_HAVE_STDIO)
 add_definitions (-DMCTP_DEFAULT_ALLOC)
 
-add_library (libmctp STATIC alloc.c core.c log.c libmctp.h serial.c)
+add_library (mctp STATIC alloc.c core.c log.c libmctp.h serial.c)
 
-target_include_directories (libmctp PUBLIC
+target_include_directories (mctp PUBLIC
                             $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
                             $<INSTALL_INTERFACE:include/libmctp)
 
 enable_testing ()
 
 add_executable (test_eid tests/test_eid.c tests/test-utils.c)
-target_link_libraries (test_eid libmctp)
+target_link_libraries (test_eid mctp)
 
 add_executable (test_seq tests/test_seq.c tests/test-utils.c)
-target_link_libraries (test_seq libmctp)
+target_link_libraries (test_seq mctp)
 
-install (TARGETS libmctp DESTINATION lib)
+install (TARGETS mctp DESTINATION lib)
 install (FILES libmctp.h DESTINATION include)