From 7f8ebb7d0dcb687574554b877a0e84f48718df37 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 16 Aug 2015 11:02:56 -0400 Subject: [PATCH] Move headers to include/ --- CMakeLists.txt | 2 +- {sway => include}/commands.h | 0 {sway => include}/config.h | 0 {sway => include}/container.h | 0 {sway => include}/handlers.h | 0 {sway => include}/layout.h | 0 {sway => include}/list.h | 0 {sway => include}/log.h | 0 {sway => include}/movement.h | 0 {sway => include}/readline.h | 0 {sway => include}/stringop.h | 0 {sway => include}/workspace.h | 0 12 files changed, 1 insertion(+), 1 deletion(-) rename {sway => include}/commands.h (100%) rename {sway => include}/config.h (100%) rename {sway => include}/container.h (100%) rename {sway => include}/handlers.h (100%) rename {sway => include}/layout.h (100%) rename {sway => include}/list.h (100%) rename {sway => include}/log.h (100%) rename {sway => include}/movement.h (100%) rename {sway => include}/readline.h (100%) rename {sway => include}/stringop.h (100%) rename {sway => include}/workspace.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b8c7b4f3..27839b1d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ FILE(GLOB sources ${PROJECT_SOURCE_DIR}/sway/*.c) include_directories( ${WLC_INCLUDE_DIRS} - sway/ + include/ ) add_executable(sway diff --git a/sway/commands.h b/include/commands.h similarity index 100% rename from sway/commands.h rename to include/commands.h diff --git a/sway/config.h b/include/config.h similarity index 100% rename from sway/config.h rename to include/config.h diff --git a/sway/container.h b/include/container.h similarity index 100% rename from sway/container.h rename to include/container.h diff --git a/sway/handlers.h b/include/handlers.h similarity index 100% rename from sway/handlers.h rename to include/handlers.h diff --git a/sway/layout.h b/include/layout.h similarity index 100% rename from sway/layout.h rename to include/layout.h diff --git a/sway/list.h b/include/list.h similarity index 100% rename from sway/list.h rename to include/list.h diff --git a/sway/log.h b/include/log.h similarity index 100% rename from sway/log.h rename to include/log.h diff --git a/sway/movement.h b/include/movement.h similarity index 100% rename from sway/movement.h rename to include/movement.h diff --git a/sway/readline.h b/include/readline.h similarity index 100% rename from sway/readline.h rename to include/readline.h diff --git a/sway/stringop.h b/include/stringop.h similarity index 100% rename from sway/stringop.h rename to include/stringop.h diff --git a/sway/workspace.h b/include/workspace.h similarity index 100% rename from sway/workspace.h rename to include/workspace.h