This commit is contained in:
IoIxD 2025-11-18 18:47:11 -07:00
commit 5634b5d5d7
17 changed files with 731 additions and 0 deletions

10
mpanel/CMakeLists.txt Normal file
View file

@ -0,0 +1,10 @@
include(MDEBase)
setup_project(mpanel ${CMAKE_INSTALL_BINDIR})
if(${CMAKE_SYSTEM_NAME} STREQUAL Linux)
target_link_libraries(
mpanel
PRIVATE
dl
)
endif()

1
mpanel/main.c Normal file
View file

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