Initial commit
This commit is contained in:
commit
81c95e88ec
6 changed files with 1862 additions and 0 deletions
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal 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})
|
||||
Loading…
Add table
Add a link
Reference in a new issue