aboutsummaryrefslogtreecommitdiff
path: root/cmake/CMakeBuildDeps.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/CMakeBuildDeps.cmake')
-rw-r--r--cmake/CMakeBuildDeps.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmake/CMakeBuildDeps.cmake b/cmake/CMakeBuildDeps.cmake
new file mode 100644
index 0000000..632e9cc
--- /dev/null
+++ b/cmake/CMakeBuildDeps.cmake
@@ -0,0 +1,8 @@
+set(DEPS_BUILDSTAMP deps/sysroot/.stamp_build)
+
+add_custom_command(OUTPUT ${DEPS_BUILDSTAMP}
+ COMMAND ./deps/makedeps.sh && touch ${DEPS_BUILDSTAMP}
+)
+add_custom_target(deps
+ DEPENDS ${DEPS_BUILDSTAMP}
+)