From 1188bb08ab5ad7e4e53fc7ab6f99db835c6b9fa6 Mon Sep 17 00:00:00 2001
From: dpuzyrkov <dpuzyrkov@termt.com>
Date: Thu, 16 Jun 2022 15:14:20 +0300
Subject: [PATCH] [*] added cmake util file for MK file reading.

---
 cmake/ReadMKFile.cmake | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 cmake/ReadMKFile.cmake

diff --git a/cmake/ReadMKFile.cmake b/cmake/ReadMKFile.cmake
new file mode 100644
index 0000000000..1b2b143cd2
--- /dev/null
+++ b/cmake/ReadMKFile.cmake
@@ -0,0 +1,22 @@
+function(ReadVariables MKFile)
+  file(READ "${MKFile}" FileContents)
+  string(REPLACE "\\\n" "" FileContents ${FileContents})
+  string(REPLACE "\n" ";" FileLines ${FileContents})
+  list(REMOVE_ITEM FileLines "")
+  foreach(line ${FileLines})
+    string(REPLACE "=" ";" line_split ${line})
+    list(LENGTH line_split count)
+    if (count LESS 2)
+      message(STATUS "Skipping ${line}")
+      continue()
+    endif()
+    list(GET line_split -1 value)
+    string(STRIP ${value} value)
+    separate_arguments(value)
+    list(REMOVE_AT line_split -1)
+    foreach(var_name ${line_split})
+      string(STRIP ${var_name} var_name)
+      set(${var_name} ${value} PARENT_SCOPE)
+    endforeach()
+  endforeach()
+endfunction()
\ No newline at end of file
-- 
GitLab