build(cmake): fix libvideo2x output file name
Some checks are pending
Build / ubuntu (push) Waiting to run
Build / windows (push) Waiting to run
Build / container (push) Waiting to run

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
No known key found for this signature in database

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 the shared library output name and disable C++ extensions
set_target_properties(libvideo2x PROPERTIES set_target_properties(libvideo2x PROPERTIES
PREFIX lib PREFIX ""
OUTPUT_NAME video2x OUTPUT_NAME libvideo2x
CXX_EXTENSIONS OFF CXX_EXTENSIONS OFF
) )