make include subfolder of soes for easy including in other projects

pull/4/head
Hans-Erik Floryd 2015-05-21 11:38:51 +02:00
parent baf5579743
commit cf58419815
4 changed files with 2 additions and 7 deletions

View File

@ -16,11 +16,10 @@ configure_file (
)
# Include paths
include_directories("${SOES_SOURCE_DIR}/include")
include_directories("${SOES_SOURCE_DIR}/soes")
# Platform flags and sources
include(${CMAKE_SYSTEM_NAME})
include(${CMAKE_SYSTEM_NAME} OPTIONAL)
# Source paths
add_subdirectory (soes)

View File

@ -19,7 +19,7 @@ include_directories(
${RTK}/include/kern
${RTK}/include/drivers
${RTK}/bsp/${BSP}/include
${SOES_SOURCE_DIR}/include/sys/gcc
${SOES_SOURCE_DIR}/soes/include/sys/gcc
)
link_directories(
${RTK}/lib/${ARCH}/${CPU}

View File

@ -1,4 +0,0 @@
set(HAL_INCLUDES
${SOES_SOURCE_DIR}/include/sys/gcc
)