init mbiff

This commit is contained in:
Nishi 2025-11-18 18:56:28 +09:00
commit 6f00f08225
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 27 additions and 0 deletions

26
mbiff/CMakeLists.txt Normal file
View file

@ -0,0 +1,26 @@
project(
mbiff
)
file(
GLOB
mbiff_SRC
*.c
)
add_executable(
mbiff
${mbiff_SRC}
)
target_link_libraries(
mbiff
PRIVATE
MDELib Mw
)
include(GNUInstallDirs)
install(
TARGETS mbiff
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)

1
mbiff/main.c Normal file
View file

@ -0,0 +1 @@
int main() {}