Simplify cmake config folder (#88)
author박세희/동작제어Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Tue, 20 Mar 2018 01:40:12 +0000 (10:40 +0900)
committer서상민/동작제어Lab(SR)/Senior Engineer/삼성전자 <sangmin7.seo@samsung.com>
Tue, 20 Mar 2018 01:40:12 +0000 (10:40 +0900)
This will move cmake config files to config folder like option files are placed in option folder

Makefile
cmake/config/config_armv7l-linux.cmake [moved from cmake/arch/arm/config_armv7l-linux.cmake with 100% similarity]
cmake/config/config_x86_64-linux.cmake [moved from cmake/arch/x86_64/config_x86_64-linux.cmake with 100% similarity]

index 34b29bf..77cbcfe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ ifneq (,$(findstring arm,$(TARGET_ARCH_BASE)))
        endif
 endif
 # the toolchain file
-TOOLCHAIN_FILE=cmake/arch/$(TARGET_ARCH_BASE)/config_$(TARGET_ARCH_LC)-linux.cmake
+TOOLCHAIN_FILE=cmake/config/config_$(TARGET_ARCH_LC)-linux.cmake
 
 WORKHOME=Product
 WORKFOLDER=$(TARGET_ARCH_LC)-linux.$(BUILD_TYPE_LC)