From 731ed24a3aa7a5d017312e0c5192deedfb68d1b9 Mon Sep 17 00:00:00 2001 From: Hyeongsik Min Date: Thu, 13 Jul 2017 16:57:01 +0900 Subject: [PATCH] Move header files in daemon/ to include directory Change-Id: Id8b9aa2e16fc9b604988075613aa53318e13883e Signed-off-by: Hyeongsik Min --- CMakeLists.txt | 1 + src/daemon/{ => include}/peripheral_bus.h | 0 src/daemon/{ => include}/peripheral_bus_adc.h | 0 src/daemon/{ => include}/peripheral_bus_board.h | 0 src/daemon/{ => include}/peripheral_bus_gpio.h | 0 src/daemon/{ => include}/peripheral_bus_i2c.h | 0 src/daemon/{ => include}/peripheral_bus_pwm.h | 0 src/daemon/{ => include}/peripheral_bus_spi.h | 0 src/daemon/{ => include}/peripheral_bus_uart.h | 0 src/daemon/{ => include}/peripheral_bus_util.h | 0 src/daemon/{ => include}/peripheral_common.h | 0 11 files changed, 1 insertion(+) rename src/daemon/{ => include}/peripheral_bus.h (100%) rename src/daemon/{ => include}/peripheral_bus_adc.h (100%) rename src/daemon/{ => include}/peripheral_bus_board.h (100%) rename src/daemon/{ => include}/peripheral_bus_gpio.h (100%) rename src/daemon/{ => include}/peripheral_bus_i2c.h (100%) rename src/daemon/{ => include}/peripheral_bus_pwm.h (100%) rename src/daemon/{ => include}/peripheral_bus_spi.h (100%) rename src/daemon/{ => include}/peripheral_bus_uart.h (100%) rename src/daemon/{ => include}/peripheral_bus_util.h (100%) rename src/daemon/{ => include}/peripheral_common.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 311b233..9893aae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ EXEC_PROGRAM(${GDBUS_CODEGEN} ARGS ") INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/daemon) +INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/daemon/include) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src/interface/include) SET(PERIPHERAL-BUS "peripheral-bus") diff --git a/src/daemon/peripheral_bus.h b/src/daemon/include/peripheral_bus.h similarity index 100% rename from src/daemon/peripheral_bus.h rename to src/daemon/include/peripheral_bus.h diff --git a/src/daemon/peripheral_bus_adc.h b/src/daemon/include/peripheral_bus_adc.h similarity index 100% rename from src/daemon/peripheral_bus_adc.h rename to src/daemon/include/peripheral_bus_adc.h diff --git a/src/daemon/peripheral_bus_board.h b/src/daemon/include/peripheral_bus_board.h similarity index 100% rename from src/daemon/peripheral_bus_board.h rename to src/daemon/include/peripheral_bus_board.h diff --git a/src/daemon/peripheral_bus_gpio.h b/src/daemon/include/peripheral_bus_gpio.h similarity index 100% rename from src/daemon/peripheral_bus_gpio.h rename to src/daemon/include/peripheral_bus_gpio.h diff --git a/src/daemon/peripheral_bus_i2c.h b/src/daemon/include/peripheral_bus_i2c.h similarity index 100% rename from src/daemon/peripheral_bus_i2c.h rename to src/daemon/include/peripheral_bus_i2c.h diff --git a/src/daemon/peripheral_bus_pwm.h b/src/daemon/include/peripheral_bus_pwm.h similarity index 100% rename from src/daemon/peripheral_bus_pwm.h rename to src/daemon/include/peripheral_bus_pwm.h diff --git a/src/daemon/peripheral_bus_spi.h b/src/daemon/include/peripheral_bus_spi.h similarity index 100% rename from src/daemon/peripheral_bus_spi.h rename to src/daemon/include/peripheral_bus_spi.h diff --git a/src/daemon/peripheral_bus_uart.h b/src/daemon/include/peripheral_bus_uart.h similarity index 100% rename from src/daemon/peripheral_bus_uart.h rename to src/daemon/include/peripheral_bus_uart.h diff --git a/src/daemon/peripheral_bus_util.h b/src/daemon/include/peripheral_bus_util.h similarity index 100% rename from src/daemon/peripheral_bus_util.h rename to src/daemon/include/peripheral_bus_util.h diff --git a/src/daemon/peripheral_common.h b/src/daemon/include/peripheral_common.h similarity index 100% rename from src/daemon/peripheral_common.h rename to src/daemon/include/peripheral_common.h -- 2.7.4