diff --git a/cmake/libaec-config.cmake.in b/cmake/libaec-config.cmake.in
index 2f733be50705b7c29913b66b981060cc1a9dc105..5054da84ffa0799eb33e4750fd0f10ab73e5b037 100644
--- a/cmake/libaec-config.cmake.in
+++ b/cmake/libaec-config.cmake.in
@@ -28,8 +28,8 @@ find_path(libaec_INCLUDE_DIR NAMES libaec.h DOC "AEC include directory")
 find_path(SZIP_INCLUDE_DIR NAMES szlib.h DOC "SZIP include directory")
 if (libaec_USE_STATIC_LIBS)
   if (MSVC)
-    find_library(libaec_LIBRARY NAMES aec_static.lib DOC "AEC library")
-    find_library(SZIP_LIBRARY NAMES szip_static.lib DOC "SZIP compatible version of the AEC library")
+    find_library(libaec_LIBRARY NAMES aec-static.lib DOC "AEC library")
+    find_library(SZIP_LIBRARY NAMES szip-static.lib DOC "SZIP compatible version of the AEC library")
   else ()
     find_library(libaec_LIBRARY NAMES libaec.a DOC "AEC library")
     find_library(SZIP_LIBRARY NAMES libsz.a DOC "SZIP compatible version of the AEC library")
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 87d3833c98c7f18254abc45ea5905a4891732efb..c634e688179c3649d48e9fd0de9093412664a140 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -15,7 +15,7 @@ add_library(aec_static STATIC "$<TARGET_OBJECTS:aec>")
 target_link_libraries(aec_static PUBLIC aec)
 set_target_properties(aec_static
   PROPERTIES
-  OUTPUT_NAME $<IF:$<BOOL:${MSVC}>,aec_static,aec>)
+  OUTPUT_NAME $<IF:$<BOOL:${MSVC}>,aec-static,aec>)
 
 add_library(aec_shared SHARED "$<TARGET_OBJECTS:aec>")
 target_link_libraries(aec_shared PUBLIC aec)
@@ -34,7 +34,7 @@ target_link_libraries(sz PUBLIC aec)
 add_library(sz_static STATIC "$<TARGET_OBJECTS:sz>" "$<TARGET_OBJECTS:aec>")
 set_target_properties(sz_static
   PROPERTIES
-  OUTPUT_NAME $<IF:$<BOOL:${MSVC}>,szip_static,sz>)
+  OUTPUT_NAME $<IF:$<BOOL:${MSVC}>,szip-static,sz>)
 target_link_libraries(sz_static PUBLIC sz)
 
 add_library(sz_shared SHARED "$<TARGET_OBJECTS:sz>" "$<TARGET_OBJECTS:aec>")