created Setup
This commit is contained in:
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(pandaaRm C)
|
||||
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||
|
||||
# Executable
|
||||
add_executable(pandaaRm
|
||||
src/main.c
|
||||
)
|
||||
#headers einbinden
|
||||
include_directories(src/include)
|
||||
|
||||
# ncurses einbinden
|
||||
find_package(Curses REQUIRED)
|
||||
include_directories(${CURSES_INCLUDE_DIR})
|
||||
target_link_libraries(pandaaRm ${CURSES_LIBRARIES})
|
||||
Reference in New Issue
Block a user