From 6a56c052bb53d5014d39484407c216652f3553eb Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Fri, 22 Sep 2023 17:20:40 -0500 Subject: [PATCH] Correct CMake and Ncurses --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59ed08a..c5f276c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project(worldsterm) SET(CMAKE_CXX_STANDARD 17) SET(CMAKE_CXX_STANDARD_REQUIRED True) SET(CMAKE_CXX_FLAGS "-O3") -include_directories(${CMAKE_BINARY_DIR}) +set(CURSES_NEED_NCURSES TRUE) find_package(Curses REQUIRED) include_directories(${CURSES_INCLUDE_DIRS}) add_subdirectory(src)