Initial commit

This commit is contained in:
winyf 2026-05-29 02:14:22 -04:00
commit 81c95e88ec
6 changed files with 1862 additions and 0 deletions

17
CMakeLists.txt Normal file
View file

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.20)
project(mwchar)
set(CURSES_NEED_NCURSES TRUE)
find_package(Curses REQUIRED)
add_executable(mwchar
src/main.c
)
target_include_directories(mwchar
PRIVATE
${CMAKE_SOURCE_DIR}/include
${CURSES_INCLUDE_DIRS}
)
target_link_libraries(mwchar PRIVATE panel menu ${CURSES_LIBRARIES})