This commit is contained in:
Nishi 2025-11-22 17:57:17 +09:00
commit 1c4e999ebe
Signed by: nishi
GPG key ID: 27EF69B208EB9343
7 changed files with 65 additions and 32 deletions

10
mauplay/CMakeLists.txt Normal file
View file

@ -0,0 +1,10 @@
include(MDEBase)
setup_project(mauplay ${CMAKE_INSTALL_BINDIR})
target_link_libraries(
mauplay
PRIVATE
MDEAudio
)
find_package(PkgConfig)

3
mauplay/main.c Normal file
View file

@ -0,0 +1,3 @@
#include "mauplay.h"
int main() {}

19
mauplay/mauplay.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef __MAUPLAY_H__
#define __MAUPLAY_H__
#include "config.h"
/* Milsko */
#include <MDE/Foundation.h>
#include <Mw/Milsko.h>
/* External */
/* Standard */
#include <sys/stat.h>
#include <unistd.h>
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
#endif