summaryrefslogtreecommitdiff
path: root/scripts/standalone.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/standalone.cmake')
-rw-r--r--scripts/standalone.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/standalone.cmake b/scripts/standalone.cmake
deleted file mode 100644
index b8bcbfa03f..0000000000
--- a/scripts/standalone.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-include(cmake/mason.cmake)
-
-# include once for every platform to get all dependency defines
-set(MBGL_PLATFORM "android")
-include(cmake/mason-dependencies.cmake)
-set(MBGL_PLATFORM "ios")
-include(cmake/mason-dependencies.cmake)
-
-get_cmake_property(_VARS VARIABLES)
-foreach (_VAR ${_VARS})
- if (_VAR MATCHES "^MASON_PACKAGE_.+_NAME$")
- set(_PACKAGE "${${_VAR}}")
- if (MASON_PACKAGE_${_PACKAGE}_HEADER_ONLY)
- file(RELATIVE_PATH _PREFIX "${CMAKE_CURRENT_LIST_DIR}/.." "${MASON_PACKAGE_${_PACKAGE}_PREFIX}")
- message("${_PACKAGE} ${_PREFIX} ${MASON_PACKAGE_${_PACKAGE}_VERSION}")
- endif()
- endif()
-endforeach()