From 212a13dc687e6f6087d2ae2981ad86728d05e0db Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sun, 16 Nov 2025 03:30:25 +0900 Subject: [PATCH] fix --- CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2867c3c..52a980d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.25) project( mdelibs - LANGUAGES C VERSION 0.0 DESCRIPTION "MDE Libraries" ) @@ -13,20 +12,20 @@ file( ) add_library( - MDE + MDELib SHARED ${SOURCES} ) target_include_directories( - MDE + MDELib PUBLIC include ) include(GNUInstallDirs) install( - TARGETS MDE + TARGETS MDELib LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} )