From a1c262a4a690084241d2740d690a1e1dfd6cbe6f Mon Sep 17 00:00:00 2001 From: viferga Date: Thu, 24 Jan 2019 09:08:30 -0900 Subject: [PATCH] Solve minor bug in cxx port. --- source/ports/cxx_port/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/ports/cxx_port/CMakeLists.txt b/source/ports/cxx_port/CMakeLists.txt index 98dd23db6..ecc166e4b 100644 --- a/source/ports/cxx_port/CMakeLists.txt +++ b/source/ports/cxx_port/CMakeLists.txt @@ -9,7 +9,8 @@ endif() # Target name set(target cxx_port) -set(target_name ${META_PROJECT_NAME}) +string(TOLOWER ${META_PROJECT_NAME} target_name) + set(target_export "${META_PROJECT_NAME}-cxx") # Exit here if required dependencies are not met