include curses in linker and include flags

This commit is contained in:
Enno Rehling 2013-05-01 13:24:53 -07:00
parent d313a73de9
commit 71fd2a4739
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ include_directories (${LUA_INCLUDE_DIR})
include_directories (${LIBXML2_INCLUDE_DIR})
include_directories (${BSON_INCLUDE_DIR})
include_directories (${INIPARSER_INCLUDE_DIR})
include_directories (${CURSES_INCLUDE_DIR})
set (SERVER_SRC
races/races.c
@ -49,4 +50,5 @@ target_link_libraries(server
${TOLUA_LIBRARIES}
${LUA_LIBRARIES}
${SQLITE3_LIBRARIES}
${CURSES_LIBRARIES}
)