Просмотр исходного кода

CMSIS-DSP: Simplification to cmake to build without test framework.

Christophe Favergeon 6 лет назад
Родитель
Сommit
aaebfa28c8

+ 1 - 1
Source/ActivationFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNActivation)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/BasicMathFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNBasicMaths)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/CMakeLists.txt

@@ -8,7 +8,7 @@ list(APPEND CMAKE_MODULE_PATH ${ROOT}/CMSIS/DSP)
 # and must use similar logic for configuring the build
 list(APPEND CMAKE_MODULE_PATH ${ROOT}/CMSIS/DSP/Source)
 
-include(config)
+include(configLib)
 include(configDsp)
 
 # Select which parts of the CMSIS-DSP must be compiled.

+ 1 - 1
Source/ConvolutionFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNConvolutions)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/FullyConnectedFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNFullyConnected)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/NNSupportFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNSupport)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/PoolingFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNPooling)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")
 

+ 1 - 1
Source/SoftmaxFunctions/CMakeLists.txt

@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.6)
 
 project(CMSISNNSoftmax)
 
-include(config)
+include(configLib)
 
 file(GLOB SRC "./*_*.c")