From 59a3d17a91dc67e6f8b416904c2b7ae7224b42a9 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Wed, 17 Dec 2025 19:24:35 +0900 Subject: [PATCH] cmake update --- audio/CMakeLists.txt | 2 +- core/CMakeLists.txt | 2 +- sound/CMakeLists.txt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/CMakeLists.txt b/audio/CMakeLists.txt index ed1946c..82c3397 100644 --- a/audio/CMakeLists.txt +++ b/audio/CMakeLists.txt @@ -1,7 +1,7 @@ include(MDEBase) include(MDEPkgConfig) -setup_library(MDEAudio) +mde_setup_library(MDEAudio) find_package(PkgConfig) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index d5c5cc2..acc5e39 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -1,6 +1,6 @@ include(MDEBase) -setup_library(MDECore ${CMAKE_INSTALL_LIBDIR}) +mde_setup_library(MDECore ${CMAKE_INSTALL_LIBDIR}) if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") target_link_libraries( MDECore diff --git a/sound/CMakeLists.txt b/sound/CMakeLists.txt index 50b8e9c..bef1f7e 100644 --- a/sound/CMakeLists.txt +++ b/sound/CMakeLists.txt @@ -1,6 +1,6 @@ include(MDEBase) include(MDEPkgConfig) -setup_library(MDESound ${CMAKE_INSTALL_LIBDIR}) +mde_setup_library(MDESound ${CMAKE_INSTALL_LIBDIR}) -pkg_config_add(MDESound vorbisfile) +mde_pkg_config_add(MDESound vorbisfile)