From 4063f14f38bd6c548c57d278597b6a4ea765f40a Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Tue, 30 Jul 2013 11:55:46 -0400 Subject: [PATCH] Fixed cmake --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 43eb379..4f9785d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ project(toxic C) set(exe_name toxic) add_executable(${exe_name} - toxic/main.c - toxic/prompt.c) + main.c + prompt.c) target_link_libraries(${exe_name} curses)