build(cmake): fix libvideo2x output file name

Signed-off-by: k4yt3x <i@k4yt3x.com>
This commit is contained in:
k4yt3x
2025-01-08 00:00:00 +00:00
parent e7096887ed
commit 1edec941c7

View File

@@ -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
)