format
This commit is contained in:
parent
1b9bac2611
commit
1c4e999ebe
7 changed files with 65 additions and 32 deletions
10
mauplay/CMakeLists.txt
Normal file
10
mauplay/CMakeLists.txt
Normal 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
3
mauplay/main.c
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include "mauplay.h"
|
||||
|
||||
int main() {}
|
||||
19
mauplay/mauplay.h
Normal file
19
mauplay/mauplay.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue