From 72c95c995b80b1a37a0380fda47dfb91773d8c64 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Thu, 31 Oct 2024 09:06:50 +0100 Subject: [PATCH] Use newer add_prx_module function --- src/module/CMakeLists.txt | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/module/CMakeLists.txt b/src/module/CMakeLists.txt index c3af316..edaebfe 100644 --- a/src/module/CMakeLists.txt +++ b/src/module/CMakeLists.txt @@ -2,15 +2,10 @@ project(pspme_prx) # Collect source files for the PRX module -file(GLOB MODULE_SOURCES *.c) +file(GLOB MODULE_SOURCES *.c *.exp) -# Find all .exp files in the directory -file(GLOB EXP_FILES *.exp) - -add_prx_module( - TARGET pspme_prx - SRC_FILES ${MODULE_SOURCES} - EXP_FILES ${EXP_FILES} +add_prx_module(pspme_prx + ${MODULE_SOURCES} ) # Set output name to "pspme.prx"