From 1edec941c7f4805083934ee5c379ddfe7db6530f Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Wed, 8 Jan 2025 00:00:00 +0000 Subject: [PATCH] build(cmake): fix libvideo2x output file name Signed-off-by: k4yt3x --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e97f981..b4ae0b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,8 +95,8 @@ target_compile_features(libvideo2x PRIVATE cxx_std_17) # Set the shared library output name and disable C++ extensions set_target_properties(libvideo2x PROPERTIES - PREFIX lib - OUTPUT_NAME video2x + PREFIX "" + OUTPUT_NAME libvideo2x CXX_EXTENSIONS OFF )